:root {
  --ink: #17221d;
  --forest: #244c3a;
  --paper: #ababab;
  --on-dark: #d6d9d6;
  --line: rgba(23, 34, 29, .25);
}

* { box-sizing: border-box; }
html { color: var(--ink); background: var(--paper); font-family: Arial, Helvetica, sans-serif; }
body { min-height: 100vh; margin: 0; }
a { color: inherit; }
:focus-visible { outline: 3px solid #f0cc7a; outline-offset: 3px; }

header { display: flex; align-items: center; justify-content: space-between; padding: 20px clamp(20px, 6vw, 92px); border-bottom: 1px solid var(--line); }
.brand { display: flex; align-items: center; gap: 12px; font-family: Georgia, serif; font-size: clamp(25px, 3vw, 38px); text-decoration: none; }
.brand img { width: 62px; height: 62px; object-fit: contain; }
.back-link { padding-bottom: 6px; border-bottom: 1px solid currentColor; font-size: 12px; font-weight: 700; text-decoration: none; }

main { width: min(850px, calc(100% - 40px)); margin: 0 auto; padding: clamp(70px, 10vw, 130px) 0; }
.kicker { margin: 0 0 24px; color: var(--forest); font-size: 10px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
h1 { max-width: 780px; margin: 0; font-family: Georgia, serif; font-size: clamp(46px, 7vw, 82px); font-weight: 400; letter-spacing: -.045em; line-height: .96; }
.intro { max-width: 690px; margin: 32px 0 70px; color: #25322c; font-size: 17px; line-height: 1.7; }
section { display: grid; grid-template-columns: minmax(180px, .45fr) 1fr; gap: 40px; padding: 30px 0; border-top: 1px solid var(--line); }
section:last-of-type { border-bottom: 1px solid var(--line); }
h2 { margin: 0; font-family: Georgia, serif; font-size: 26px; font-weight: 400; }
section p { margin: 0; color: #25322c; font-size: 14px; line-height: 1.75; }
section a { font-weight: 700; }
.updated { margin: 28px 0 0; color: #25322c; font-size: 11px; }

footer { display: flex; justify-content: space-between; gap: 25px; padding: 30px clamp(20px, 6vw, 92px); background: var(--ink); color: var(--on-dark); font-size: 11px; }

@media (max-width: 620px) {
  header { align-items: flex-start; flex-direction: column; gap: 20px; }
  section { grid-template-columns: 1fr; gap: 14px; }
  footer { align-items: flex-start; flex-direction: column; }
}
