* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: #faf6ec;
  color: #1a1612;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  line-height: 1.55;
}
a { color: #1a1612; text-underline-offset: 3px; text-decoration-color: #b9502d; }
a:hover { color: #b9502d; }
.page {
  width: min(1040px, calc(100% - 40px));
  margin: 0 auto;
  padding: 44px 0 32px;
}
.mast {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
  border-bottom: 1px solid #1a1612;
  padding-bottom: 18px;
}
.kicker,
.meta,
.label,
.foot,
.button,
.small {
  font-family: "Courier New", monospace;
  letter-spacing: 0.08em;
}
.kicker,
.label {
  color: #7a6e5e;
  font-size: 11px;
  text-transform: uppercase;
}
h1 {
  font-size: clamp(48px, 8vw, 92px);
  line-height: 0.94;
  font-weight: 400;
  margin: 8px 0 0;
}
h2 {
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1;
  font-weight: 400;
  margin: 0 0 12px;
}
.meta {
  color: #7a6e5e;
  font-size: 12px;
  text-align: right;
}
.intro {
  max-width: 760px;
  font-size: 23px;
  line-height: 1.4;
  color: #433a30;
  margin: 30px 0 32px;
}
.grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
  gap: 36px;
  align-items: start;
}
.panel {
  border-top: 1px solid #1a1612;
  padding-top: 18px;
}
.tool {
  border-top: 1px solid #1a1612;
  border-bottom: 1px solid #d9cdb4;
  padding: 20px 0 22px;
}
.tool p,
.panel p,
.panel li {
  color: #433a30;
}
.button {
  display: inline-block;
  margin-top: 8px;
  padding: 10px 14px;
  background: #1a1612;
  color: #faf6ec;
  font-size: 12px;
  text-decoration: none;
}
.button:hover {
  background: #b9502d;
  color: #faf6ec;
}
.list {
  padding-left: 20px;
  margin: 8px 0 0;
}
.note {
  border-left: 2px solid #b9502d;
  padding-left: 14px;
  color: #433a30;
}
.foot {
  margin-top: 50px;
  padding-top: 18px;
  border-top: 1px solid #1a1612;
  color: #7a6e5e;
  font-size: 11px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  justify-content: space-between;
}
.small { font-size: 12px; color: #7a6e5e; }
@media (max-width: 760px) {
  .mast,
  .grid,
  .foot {
    display: grid;
    grid-template-columns: 1fr;
  }
  .meta { text-align: left; }
}
