.type-page {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 64px 0 100px;
}
.type-hero {
  display: grid;
  grid-template-columns: minmax(300px, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(42px, 7vw, 88px);
  align-items: center;
}
.type-art {
  margin: 0;
  padding: 14px;
  background: #fff;
  border: 1px solid #d1c3ae;
  box-shadow: 18px 20px 0 #d8c8b4;
  transform: rotate(-1deg);
}
.type-art img {
  display: block;
  width: 100%;
  height: auto;
}
.type-copy h1 {
  max-width: 740px;
  margin: 13px 0 22px;
  font-size: clamp(48px, 7vw, 88px);
  letter-spacing: -0.045em;
}
.type-intro {
  max-width: 650px;
  color: #50616c;
  font-size: 19px;
}
.type-axis {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 30px 0 22px;
}
.type-axis span {
  padding: 16px;
  border-radius: 8px;
  font: 700 13px/1.2 "DM Sans", Arial, sans-serif;
}
.type-axis small {
  display: block;
  margin-top: 7px;
  color: currentColor;
  font-weight: 500;
  opacity: 0.75;
}
.type-axis .sun { background: #f2e6d4; color: #865c2c; }
.type-axis .moon { background: #ebe7f4; color: #635681; }
.type-axis .venus { background: #f5e4eb; color: #91566b; }
.type-note { color: var(--muted); font-size: 13px; }
.type-page-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.type-page-actions a,
.type-page-actions button {
  min-height: 48px;
  padding: 13px 18px;
  border: 1px solid var(--navy);
  border-radius: 5px;
  background: transparent;
  color: var(--navy);
  font: 700 13px/1.2 "DM Sans", Arial, sans-serif;
  text-decoration: none;
  cursor: pointer;
}
.type-page-actions .type-primary {
  background: #bd4a13;
  border-color: #bd4a13;
  color: #fff;
  box-shadow: 0 5px 0 #85340e;
}
.type-page-actions .type-primary:hover { background: #a33c0e; }
.type-proof {
  margin-top: 92px;
  padding: 46px;
  background: #fffdf8;
  border: 1px solid #e4dfd4;
}
.type-proof h2 { max-width: 720px; font-size: clamp(32px, 4vw, 50px); }
.type-proof > div { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
@media (max-width: 760px) {
  .type-page { padding-top: 36px; }
  .type-hero { grid-template-columns: 1fr; gap: 52px; }
  .type-art { width: min(88%, 420px); margin: auto; }
  .type-axis { grid-template-columns: 1fr; }
  .type-proof { margin-top: 64px; padding: 28px 22px; }
  .type-proof > div { grid-template-columns: 1fr; gap: 8px; }
}
