:root {
  --paper: #fff8ef;
  --paper-deep: #f4e6d2;
  --ink: #302324;
  --muted: #775d60;
  --rose: #c65e70;
  --sage: #657b62;
  --sky: #d7ecf2;
  --line: #e2cdb7;
  --white: #fffdf8;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: linear-gradient(180deg, #fffaf2 0%, var(--paper) 46%, #f2e8d9 100%);
  font-family: Georgia, 'Times New Roman', serif;
  line-height: 1.7;
}
a { color: inherit; }
.skip-link { position: absolute; left: -999px; top: 12px; background: var(--ink); color: #fff; padding: 8px 12px; z-index: 10; }
.skip-link:focus { left: 12px; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 5;
  background: rgba(255, 250, 242, .94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}
.nav {
  max-width: 1120px;
  margin: 0 auto;
  padding: 16px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; font-weight: 800; letter-spacing: .04em; text-transform: lowercase; }
.mark { width: 38px; height: 38px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; color: #fff; background: linear-gradient(135deg, var(--rose), var(--sage)); font-family: Arial, sans-serif; font-weight: 800; }
.nav-links { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; font-family: Arial, sans-serif; font-size: 14px; font-weight: 700; }
.nav-links a { text-decoration: none; padding: 8px 12px; border-radius: 999px; }
.nav-links a:hover, .nav-links .active { background: #f0ded1; color: #5b3146; }
.hero {
  max-width: 1120px;
  margin: 0 auto;
  padding: 70px 22px 54px;
  display: flex;
  gap: 40px;
  align-items: center;
}
.hero-copy { flex: 1 1 440px; }
.kicker { font-family: Arial, sans-serif; color: var(--rose); font-size: 13px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; margin: 0 0 14px; }
h1 { font-size: clamp(44px, 9vw, 104px); line-height: .92; margin: 0; letter-spacing: 0; }
.hero-copy .lede { font-size: clamp(20px, 3vw, 29px); line-height: 1.35; color: #563b48; max-width: 620px; margin: 24px 0 0; font-style: italic; }
.hero-card {
  flex: 0 1 360px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 28px 70px rgba(68, 39, 26, .16);
  padding: 16px;
  transform: rotate(1deg);
}
.hero-card img { display: block; width: 100%; aspect-ratio: 4 / 5; object-fit: cover; border: 1px solid #ead6c1; }
.hero-card p { margin: 14px 4px 0; font-size: 17px; color: var(--muted); }
.band { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(255,253,248,.58); }
.section { max-width: 1120px; margin: 0 auto; padding: 56px 22px; }
.section-head { display: flex; justify-content: space-between; align-items: end; gap: 20px; margin-bottom: 26px; }
h2 { font-size: clamp(30px, 5vw, 52px); line-height: 1.05; margin: 0; }
.section-head p { max-width: 520px; margin: 0; color: var(--muted); font-size: 18px; }
.post-list { display: flex; flex-direction: column; gap: 18px; }
.post-card {
  display: flex;
  gap: 20px;
  align-items: stretch;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 16px;
  text-decoration: none;
  box-shadow: 0 14px 38px rgba(80, 49, 36, .08);
}
.post-card:hover { border-color: #bd9f88; transform: translateY(-1px); }
.thumb { width: 118px; min-height: 118px; border-radius: 4px; background: var(--sky); overflow: hidden; flex: 0 0 auto; display: flex; align-items: center; justify-content: center; color: #6f3d4f; font-family: Arial, sans-serif; font-size: 28px; font-weight: 900; }
.thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.post-card h3 { margin: 2px 0 6px; font-size: 26px; line-height: 1.15; }
.meta { font-family: Arial, sans-serif; text-transform: uppercase; letter-spacing: .07em; font-size: 12px; color: var(--rose); font-weight: 800; }
.post-card p { margin: 7px 0 0; color: var(--muted); font-size: 17px; }
.mini-panels { display: flex; gap: 18px; flex-wrap: wrap; }
.mini-panels a { flex: 1 1 230px; min-width: 0; background: #f9eee0; border: 1px solid var(--line); padding: 22px; border-radius: 6px; text-decoration: none; }
.mini-panels strong { display: block; font-size: 22px; line-height: 1.2; margin-bottom: 8px; }
.article-hero { max-width: 880px; margin: 0 auto; padding: 64px 22px 36px; text-align: center; }
.article-hero h1 { font-size: clamp(42px, 8vw, 84px); }
.article-hero p { margin: 18px auto 0; color: var(--muted); font-size: 19px; max-width: 680px; }
.article-wrap { max-width: 900px; margin: 0 auto 64px; padding: 0 22px; }
.article-image { margin: 0 auto 30px; max-width: 620px; background: var(--white); padding: 14px; border: 1px solid var(--line); transform: rotate(-.6deg); }
.article-image img { width: 100%; display: block; border: 1px solid #ead6c1; }
.entry { background: var(--white); border: 1px solid var(--line); border-radius: 6px; padding: clamp(24px, 5vw, 56px); box-shadow: 0 24px 70px rgba(80, 49, 36, .1); }
.entry p, .entry li { font-size: 19px; }
.entry h2, .entry h3 { font-size: clamp(27px, 4vw, 40px); margin-top: 32px; }
.entry blockquote { margin: 28px 0; padding: 18px 22px; border-left: 4px solid var(--rose); background: #fff4ea; font-size: 21px; font-style: italic; }
.entry img { max-width: 100%; height: auto; border-radius: 6px; }
.after-post { margin-top: 24px; display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; font-family: Arial, sans-serif; font-weight: 800; }
.after-post a { text-decoration: none; border: 1px solid var(--line); border-radius: 999px; padding: 9px 14px; background: #fffaf4; }
.footer { background: #2a2422; color: #fff8ef; }
.footer-inner { max-width: 1120px; margin: 0 auto; padding: 32px 22px; display: flex; justify-content: space-between; gap: 18px; flex-wrap: wrap; }
.footer a { color: #fff8ef; }
@media (max-width: 760px) {
  .hero { padding-top: 42px; flex-direction: column; align-items: stretch; }
  .hero-card { transform: none; }
  .section-head { display: block; }
  .section-head p { margin-top: 12px; }
  .post-card { display: block; }
  .thumb { width: 100%; min-height: 190px; margin-bottom: 14px; }
  .nav { align-items: flex-start; }
  .nav-links { width: 100%; }
}
