:root {
  --paper: #f5f0e8;
  --paper-strong: #ece2d2;
  --ink: #171512;
  --muted: #62584d;
  --line: #d8cbbb;
  --accent: #a74b28;
  --accent-soft: #ede0d0;
  --panel: rgba(255, 252, 247, 0.72);
  --shadow: 0 20px 60px rgba(45, 32, 18, 0.12);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.7;
  background:
    radial-gradient(circle at top left, rgba(183, 126, 90, 0.12), transparent 28%),
    linear-gradient(180deg, #f8f4ee 0%, var(--paper) 34%, #f3ecdf 100%);
}

img {
  display: block;
  max-width: 100%;
}

figure,
p,
h1,
h2,
h3,
blockquote {
  margin: 0;
}

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

.wrap {
  width: min(calc(100% - 2rem), var(--max));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(216, 203, 187, 0.9);
  background: rgba(248, 244, 238, 0.88);
  backdrop-filter: blur(14px);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 68px;
}

.brand {
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 1rem;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.menu a {
  position: relative;
}

.menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.menu a:hover::after {
  transform: scaleX(1);
}

main {
  padding-bottom: 1rem;
}

.hero {
  display: grid;
  grid-template-columns: 200px minmax(0, 1fr);
  padding: 3rem 0 2.5rem;
  border-bottom: 1px solid var(--line);
}

.hero-copy {
  grid-column: 2;
  display: flex;
  flex-direction: column;
  gap: 1.3rem;
  max-width: 760px;
}

.eyebrow,
.section-tag,
.label {
  font-family: Arial, Helvetica, sans-serif;
}

.eyebrow {
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.hero-name {
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

h1 {
  font-size: clamp(2rem, 3.9vw, 3.8rem);
  line-height: 0.92;
  letter-spacing: -0.06em;
  max-width: 14ch;
}

.lead {
  font-size: 1.14rem;
  color: #2d2822;
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 0.4rem;
}

.book-highlight {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-top: 0.4rem;
  padding: 1.25rem 1.35rem;
  border: 1px solid rgba(167, 75, 40, 0.28);
  background: linear-gradient(180deg, rgba(237, 224, 208, 0.72) 0%, rgba(255, 250, 243, 0.92) 100%);
}

.book-highlight-label,
.book-highlight-link {
  font-family: Arial, Helvetica, sans-serif;
}

.book-highlight-label {
  color: var(--accent);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.book-highlight-title {
  font-size: clamp(1.5rem, 2.4vw, 2.2rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.book-highlight-text {
  font-size: 1rem;
  color: #2e2923;
}

.book-highlight-link {
  width: fit-content;
  padding-bottom: 0.15rem;
  border-bottom: 1px solid currentColor;
  color: var(--accent);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.meta-block {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1rem 1.05rem;
  border: 1px solid var(--line);
  background: var(--panel);
  box-shadow: 0 10px 30px rgba(45, 32, 18, 0.05);
}

.label {
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.value {
  font-size: 1rem;
}

section {
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--line);
}

.section-head {
  display: grid;
  grid-template-columns: 200px minmax(0, 1fr);
  gap: 2rem;
  align-items: start;
}

.section-tag {
  padding-top: 0.35rem;
  color: var(--muted);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.section-body {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 760px;
}

.section-body h2 {
  font-size: clamp(1.6rem, 3.2vw, 2.7rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
  max-width: 22ch;
}

.section-body > p,
.box p,
.plain-list {
  color: #2e2923;
  font-size: 1.04rem;
}

.cols {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.4rem;
  margin-top: 0.5rem;
}

.box {
  min-height: 100%;
  padding: 1.35rem;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.45) 0%, rgba(255, 250, 243, 0.82) 100%);
  box-shadow: 0 12px 32px rgba(45, 32, 18, 0.05);
}

.box h3 {
  margin-bottom: 0.75rem;
  font-size: 1.15rem;
}

.stacked-paragraph {
  margin-top: 0.75rem;
}

.plain-list {
  margin: 0;
  padding-left: 1.2rem;
}

.plain-list li + li {
  margin-top: 0.45rem;
}

.quote {
  max-width: 42ch;
  margin-top: 0.5rem;
  padding-left: 1.1rem;
  border-left: 3px solid var(--accent);
  font-size: 1.22rem;
  line-height: 1.55;
  color: #2c2621;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 1.6rem 0 3rem;
  color: var(--muted);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.92rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

@media (max-width: 980px) {
  .hero,
  .section-head,
  .cols {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    grid-column: auto;
  }

  h1,
  .section-body h2,
  .lead {
    max-width: none;
  }

  .section-tag {
    padding-top: 0;
  }
}

@media (max-width: 720px) {
  .topbar-inner {
    align-items: flex-start;
    padding: 0.85rem 0;
  }

  .menu {
    gap: 0.7rem 1rem;
    font-size: 0.8rem;
  }

  .hero {
    padding-top: 2rem;
  }

  .hero-meta {
    grid-template-columns: 1fr;
  }

  section {
    padding: 2rem 0;
  }
}
