:root {
  --tmhp-ink: #151515;
  --tmhp-paper: #f3f0e9;
  --tmhp-white: #fff;
  --tmhp-line: #ddd8cf;
  --tmhp-muted: #6f6b65;
  --tmhp-red: #e33a2d;
  --tmhp-serif: Georgia, "Times New Roman", serif;
}

.tmhp-app,
.tmhp-app * {
  box-sizing: border-box;
}

.tmhp-app {
  container-type: inline-size;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  margin: 10px 0 60px;
  overflow-x: hidden;
  overflow-x: clip;
  color: var(--tmhp-ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
}

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

.tmhp-app button,
.tmhp-app input,
.tmhp-app textarea {
  max-width: 100%;
  font: inherit;
}

.tmhp-hero {
  position: relative;
  min-height: 500px;
  overflow: hidden;
  padding: clamp(38px, 7cqw, 76px);
  border-radius: 28px;
  color: white;
  background:
    radial-gradient(circle at 82% 20%, rgba(227,58,45,.34), transparent 27%),
    linear-gradient(125deg, #161616 0 68%, #391b18 100%);
}

.tmhp-hero::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: .1;
  background-image:
    linear-gradient(rgba(255,255,255,.2) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.2) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(90deg, black, transparent 78%);
}

.tmhp-hero__copy {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.tmhp-eyebrow {
  display: block;
  margin-bottom: 20px;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.tmhp-eyebrow::before {
  display: inline-block;
  width: 26px;
  height: 2px;
  margin: 0 10px 3px 0;
  content: "";
  background: var(--tmhp-red);
}

.tmhp-eyebrow--dark {
  color: var(--tmhp-muted);
}

.tmhp-hero h1,
.tmhp-person-hero h1 {
  margin: 0 !important;
  color: inherit !important;
  font-family: var(--tmhp-serif) !important;
  font-size: clamp(54px, 9cqw, 104px) !important;
  font-weight: 400 !important;
  line-height: .91 !important;
  letter-spacing: -.06em;
}

.tmhp-hero h1 em {
  color: #ec5b4e;
  font-weight: 400;
}

.tmhp-hero__copy > p {
  max-width: 650px;
  margin: 28px 0;
  color: rgba(255,255,255,.68);
  font-size: clamp(16px, 2.1cqw, 20px);
}

.tmhp-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border: 0;
  border-radius: 100px;
  color: white !important;
  font-size: 12px;
  font-weight: 800;
  text-decoration: none !important;
  background: var(--tmhp-red);
  cursor: pointer;
}

.tmhp-hero__monogram {
  position: absolute;
  z-index: 1;
  right: -20px;
  bottom: -100px;
  color: rgba(255,255,255,.055);
  font-family: var(--tmhp-serif);
  font-size: 410px;
  line-height: 1;
}

.tmhp-hero__stats {
  position: absolute;
  z-index: 2;
  right: clamp(28px, 6cqw, 65px);
  bottom: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  color: rgba(255,255,255,.48);
  font-size: 10px;
  text-transform: uppercase;
}

.tmhp-hero__stats strong {
  display: block;
  color: white;
  font-family: var(--tmhp-serif);
  font-size: 24px;
  font-weight: 400;
  text-transform: none;
}

.tmhp-catalog {
  padding: clamp(65px, 8cqw, 105px) 0 0;
}

.tmhp-heading {
  display: grid;
  grid-template-columns: 1fr .7fr;
  align-items: end;
  gap: 40px;
  margin-bottom: 40px;
}

.tmhp-heading h2,
.tmhp-suggest h2,
.tmhp-related h2 {
  margin: 0 !important;
  font-family: var(--tmhp-serif) !important;
  font-size: clamp(44px, 6.5cqw, 74px) !important;
  font-weight: 400 !important;
  line-height: .95 !important;
  letter-spacing: -.05em;
}

.tmhp-heading > p {
  margin: 0;
  color: var(--tmhp-muted);
  font-size: 15px;
  line-height: 1.7;
}

.tmhp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 235px), 1fr));
  gap: 15px;
}

.tmhp-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--tmhp-line);
  border-radius: 20px;
  background: white;
  transition: transform .22s ease, box-shadow .22s ease;
}

.tmhp-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 17px 40px rgba(25,20,15,.1);
}

.tmhp-card__portrait {
  position: relative;
  display: block;
  height: 290px;
  overflow: hidden;
  color: white !important;
  text-decoration: none !important;
}

.tmhp-card__portrait img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) sepia(.12);
  transition: transform .4s ease;
}

.tmhp-card:hover .tmhp-card__portrait img {
  transform: scale(1.035);
}

.tmhp-card__initials {
  position: absolute;
  z-index: 1;
  inset: 0;
  display: grid;
  place-items: center;
  color: rgba(255,255,255,.84);
  font-family: var(--tmhp-serif);
  font-size: 72px;
}

.tmhp-card__era {
  position: absolute;
  z-index: 3;
  right: 13px;
  bottom: 13px;
  padding: 5px 9px;
  border-radius: 100px;
  color: var(--tmhp-ink);
  font-size: 9px;
  font-weight: 800;
  background: white;
}

.tmhp-tone-red { background: linear-gradient(145deg, #a62922, #431b19); }
.tmhp-tone-ink { background: linear-gradient(145deg, #4a4a4a, #151515); }
.tmhp-tone-amber { background: linear-gradient(145deg, #9c6b28, #3e2d20); }
.tmhp-tone-blue { background: linear-gradient(145deg, #426c7c, #17272e); }
.tmhp-tone-green { background: linear-gradient(145deg, #55786a, #172b24); }
.tmhp-tone-plum { background: linear-gradient(145deg, #75576f, #291c27); }

.tmhp-card__body {
  padding: 20px;
}

.tmhp-card__category {
  display: block;
  margin-bottom: 8px;
  color: var(--tmhp-red);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.tmhp-card__body h2 {
  margin: 0 !important;
  font-family: var(--tmhp-serif) !important;
  font-size: 27px !important;
  font-weight: 400 !important;
  line-height: 1 !important;
}

.tmhp-card__body h2 a {
  color: var(--tmhp-ink) !important;
  text-decoration: none !important;
}

.tmhp-card__years {
  display: block;
  margin-top: 4px;
  color: var(--tmhp-muted);
  font-family: var(--tmhp-serif);
  font-size: 13px;
}

.tmhp-card__body > strong {
  display: block;
  margin: 15px 0 6px;
  font-size: 11px;
}

.tmhp-card__body > p {
  min-height: 75px;
  margin: 0 0 16px;
  color: var(--tmhp-muted);
  font-size: 12px;
}

.tmhp-card__link {
  display: flex;
  justify-content: space-between;
  padding-top: 13px;
  border-top: 1px solid #ece8e1;
  color: var(--tmhp-ink) !important;
  font-size: 11px;
  font-weight: 800;
  text-decoration: none !important;
}

.tmhp-card__link span {
  color: var(--tmhp-red);
}

.tmhp-back {
  display: inline-block;
  margin: 8px 0 18px;
  color: var(--tmhp-muted) !important;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none !important;
}

.tmhp-person-hero {
  position: relative;
  display: grid;
  min-height: 500px;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 34%);
  gap: 32px;
  overflow: hidden;
  padding: clamp(35px, 6cqw, 70px);
  border-radius: 27px;
  color: white;
}

.tmhp-person-hero__copy {
  position: relative;
  z-index: 2;
  align-self: center;
  min-width: 0;
}

.tmhp-person-hero h1 {
  overflow-wrap: anywhere;
}

.tmhp-person-hero__copy > strong {
  display: block;
  margin-top: 18px;
  color: #f06b60;
  font-size: 13px;
}

.tmhp-person-hero__copy > p {
  max-width: 660px;
  color: rgba(255,255,255,.7);
  font-size: 17px;
}

.tmhp-person-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 25px;
}

.tmhp-person-facts > span {
  min-width: 135px;
  padding: 11px 13px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 12px;
  background: rgba(0,0,0,.13);
}

.tmhp-person-facts small,
.tmhp-person-facts b {
  display: block;
}

.tmhp-person-facts small {
  color: rgba(255,255,255,.5);
  font-size: 8px;
  text-transform: uppercase;
}

.tmhp-person-facts b {
  margin-top: 3px;
  font-size: 12px;
}

.tmhp-person-hero__portrait {
  position: relative;
  z-index: 2;
  align-self: center;
  height: min(420px, 50cqw);
  min-height: 300px;
  overflow: hidden;
  border-radius: 150px 150px 18px 18px;
  background: rgba(0,0,0,.18);
}

.tmhp-person-hero__portrait > span {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: rgba(255,255,255,.75);
  font-family: var(--tmhp-serif);
  font-size: 78px;
}

.tmhp-person-hero__portrait img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) sepia(.12);
}

.tmhp-portrait-credit {
  min-height: 22px;
  padding: 6px 4px 0;
  color: var(--tmhp-muted);
  font-size: 9px;
  text-align: right;
}

.tmhp-portrait-credit a {
  color: inherit !important;
}

.tmhp-article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 25px;
  min-width: 0;
  margin-top: 48px;
}

.tmhp-biography section {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 17px;
  padding-bottom: 48px;
}

.tmhp-section-number {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  color: white;
  font-size: 10px;
  font-weight: 850;
  background: var(--tmhp-red);
}

.tmhp-biography h2 {
  margin: 0 0 18px !important;
  font-family: var(--tmhp-serif) !important;
  font-size: clamp(34px, 5cqw, 50px) !important;
  font-weight: 400 !important;
  line-height: 1 !important;
  letter-spacing: -.04em;
}

.tmhp-prose {
  color: #4f4c47;
  font-size: 16px;
  line-height: 1.82;
}

.tmhp-prose p {
  margin: 0 0 1.15em;
}

.tmhp-person-summary {
  padding: 24px;
  border-radius: 18px;
  color: white;
  background: var(--tmhp-ink);
}

.tmhp-person-summary > span {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.tmhp-person-summary dl {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 18px 0 0;
}

.tmhp-person-summary dl > div {
  padding: 12px 0;
  border-top: 1px solid rgba(255,255,255,.14);
}

.tmhp-person-summary dt {
  color: rgba(255,255,255,.5);
  font-size: 10px;
}

.tmhp-person-summary dd {
  margin: 4px 0 0;
  font-size: 12px;
  font-weight: 700;
}

.tmhp-person-summary > a {
  display: block;
  margin-top: 15px;
  padding: 11px 13px;
  border-radius: 10px;
  color: var(--tmhp-ink) !important;
  font-size: 11px;
  font-weight: 800;
  text-align: center;
  text-decoration: none !important;
  background: white;
}

.tmhp-related {
  padding-top: 50px;
  border-top: 1px solid var(--tmhp-line);
}

.tmhp-related > div {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 25px;
}

.tmhp-related a {
  min-width: 0;
  min-height: 150px;
  padding: 18px;
  border-radius: 16px;
  color: white !important;
  text-decoration: none !important;
  background: var(--tmhp-ink);
}

.tmhp-related a > span {
  display: block;
  margin-bottom: 22px;
  color: rgba(255,255,255,.2);
  font-family: var(--tmhp-serif);
  font-size: 34px;
}

.tmhp-related strong,
.tmhp-related small {
  display: block;
}

.tmhp-related small {
  margin-top: 4px;
  color: rgba(255,255,255,.48);
}

.tmhp-suggest {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 35px;
  margin-top: 70px;
  padding: clamp(28px, 5cqw, 50px);
  border-radius: 23px;
  background: #e8e3da;
}

.tmhp-suggest__intro > p {
  max-width: 460px;
  color: var(--tmhp-muted);
}

.tmhp-form {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.tmhp-form label {
  display: grid;
  gap: 5px;
}

.tmhp-form label > span {
  color: var(--tmhp-muted);
  font-size: 10px;
  font-weight: 750;
}

.tmhp-form input,
.tmhp-form textarea {
  width: 100%;
  padding: 12px 13px;
  border: 1px solid var(--tmhp-line);
  border-radius: 10px;
  outline: none;
  color: var(--tmhp-ink);
  background: white;
}

.tmhp-form input:focus,
.tmhp-form textarea:focus {
  border-color: var(--tmhp-ink);
}

.tmhp-field-wide {
  grid-column: 1 / -1;
}

.tmhp-consent {
  display: flex !important;
  grid-template-columns: auto 1fr;
  align-items: flex-start;
  gap: 8px !important;
}

.tmhp-consent input {
  flex: 0 0 auto;
  width: auto;
  margin-top: 3px;
}

.tmhp-trap {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.tmhp-message {
  padding: 12px 14px;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 700;
}

.tmhp-message--success {
  color: #164c36;
  background: #dcf4e8;
}

.tmhp-message--error {
  color: #722820;
  background: #f9dfdc;
}

@container (max-width: 760px) {
  .tmhp-hero {
    min-height: 560px;
    padding: 34px 26px;
  }

  .tmhp-hero h1,
  .tmhp-person-hero h1 {
    font-size: clamp(46px, 12cqw, 68px) !important;
  }

  .tmhp-hero__monogram {
    right: -40px;
    font-size: 280px;
  }

  .tmhp-hero__stats {
    right: 25px;
    left: 25px;
    bottom: 24px;
  }

  .tmhp-heading,
  .tmhp-suggest {
    grid-template-columns: 1fr;
  }

  .tmhp-heading {
    gap: 15px;
  }

  .tmhp-person-hero {
    min-height: 560px;
    grid-template-columns: minmax(0, 1fr) 150px;
    padding: 32px 24px;
  }

  .tmhp-person-hero__portrait {
    height: 250px;
    min-height: 250px;
  }
}

@container (max-width: 520px) {
  .tmhp-hero {
    min-height: 600px;
  }

  .tmhp-person-hero {
    display: block;
    min-height: auto;
  }

  .tmhp-person-hero__portrait {
    width: 150px;
    height: 210px;
    min-height: 210px;
    margin: 28px 0 0 auto;
  }

  .tmhp-biography section {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .tmhp-person-summary dl,
  .tmhp-related > div,
  .tmhp-form {
    grid-template-columns: 1fr;
  }

  .tmhp-field-wide {
    grid-column: auto;
  }

  .tmhp-card__body > p {
    min-height: 0;
  }
}
