@charset "UTF-8";

.nav-mail {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 11px 17px;
  color: var(--black);
  background: var(--cream);
  border: 2px solid var(--cream);
  font-size: .76rem;
  font-weight: 800;
  transition: color .2s ease, background .2s ease, border-color .2s ease, transform .22s var(--ease-out);
}

.nav-mail:hover {
  color: var(--cream);
  background: var(--coral);
  border-color: var(--coral);
  transform: translateY(-2px);
}

.article-hero {
  position: relative;
  padding-block: clamp(78px, 11vw, 158px);
  color: var(--black);
  background: var(--yellow);
  border-bottom: 2px solid var(--black);
  overflow: clip;
}

.article-hero::after {
  position: absolute;
  right: clamp(-60px, -2vw, -18px);
  bottom: clamp(-100px, -7vw, -40px);
  color: rgb(17 16 14 / 9%);
  font-family: var(--display);
  font-size: clamp(7rem, 21vw, 20rem);
  font-weight: 700;
  letter-spacing: -.12em;
  line-height: .7;
  content: "MC";
  pointer-events: none;
}

.article-hero .shell {
  position: relative;
  z-index: 1;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 22px;
  align-items: center;
  margin-bottom: clamp(28px, 4vw, 48px);
  font-family: var(--display);
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .025em;
  text-transform: uppercase;
}

.article-meta > * {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.article-meta > *:not(:last-child)::after {
  width: 5px;
  height: 5px;
  background: currentColor;
  content: "";
}

.article-title {
  max-width: 17ch;
  font-size: clamp(2.8rem, 6.2vw, 5.25rem);
  line-height: .96;
}

.article-deck {
  max-width: 67ch;
  margin: clamp(25px, 4vw, 42px) 0 0;
  font-size: clamp(1.05rem, .96rem + .35vw, 1.3rem);
  font-weight: 600;
  line-height: 1.5;
  text-wrap: pretty;
}

.article-body {
  display: grid;
  grid-template-columns: minmax(190px, .34fr) minmax(0, 1fr);
  gap: clamp(45px, 9vw, 145px);
  align-items: start;
  padding-block: clamp(75px, 10vw, 145px);
}

.article-aside {
  position: sticky;
  top: calc(var(--header-height) + 26px);
  padding-top: 18px;
  border-top: 2px solid var(--black);
}

.article-aside strong {
  font-family: var(--display);
  font-size: .62rem;
  letter-spacing: .02em;
}

.article-aside ul {
  display: grid;
  gap: 0;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.article-aside li {
  border-bottom: 1px solid var(--line-dark);
}

.article-aside a {
  display: block;
  padding-block: 10px;
  color: var(--muted);
  font-size: .76rem;
  font-weight: 700;
}

.article-aside a:hover {
  color: var(--coral-dark);
}

.prose {
  min-width: 0;
  max-width: 790px;
}

.prose > :first-child {
  margin-top: 0;
}

.prose h2 {
  max-width: 21ch;
  margin-top: clamp(68px, 9vw, 112px);
  scroll-margin-top: calc(var(--header-height) + 30px);
  font-size: clamp(2rem, 3.4vw, 3rem);
}

.prose h2 + p {
  margin-top: 25px;
}

.prose p,
.prose li {
  font-size: clamp(1rem, .96rem + .16vw, 1.1rem);
  line-height: 1.7;
}

.prose p {
  margin: 18px 0 0;
}

.prose ul,
.prose ol {
  display: grid;
  gap: 14px;
  margin: 28px 0 0;
  padding-left: 1.4em;
}

.prose li::marker {
  color: var(--coral-dark);
  font-weight: 800;
}

.prose a:not(.button) {
  border-bottom: 2px solid var(--coral);
  font-weight: 700;
}

.prose a:not(.button):hover {
  color: var(--coral-dark);
}

.prose blockquote {
  margin: clamp(44px, 6vw, 70px) 0;
  padding: clamp(28px, 4vw, 44px);
  color: var(--cream);
  background: var(--black);
  border-left: 12px solid var(--coral);
}

.prose blockquote p {
  max-width: 29ch;
  margin: 0;
  font-size: clamp(1.35rem, 2.5vw, 2rem);
  font-weight: 800;
  letter-spacing: -.035em;
  line-height: 1.15;
}

.article-cta {
  margin-top: clamp(72px, 10vw, 120px);
  padding: clamp(30px, 5vw, 54px);
  color: var(--black);
  background: var(--coral);
  border: 2px solid var(--black);
  box-shadow: 11px 12px 0 var(--black);
}

.article-cta h2 {
  max-width: 15ch;
  margin: 0;
}

.article-cta p {
  max-width: 48ch;
}

.article-cta .button {
  margin-top: 26px;
  color: var(--cream);
  background: var(--black);
  border-color: var(--black);
}

.article-cta .button:hover {
  color: var(--black);
  background: var(--yellow);
}

.checklist-hero {
  color: var(--cream);
  background: var(--coral);
}

.checklist-hero::after {
  right: clamp(-25px, 1vw, 60px);
  bottom: clamp(-55px, -2vw, -25px);
  color: rgb(17 16 14 / 18%);
  font-family: var(--sans);
  font-size: clamp(13rem, 32vw, 30rem);
  letter-spacing: -.1em;
  content: "40";
}

.print-mark {
  display: none;
}

.checklist-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.checklist-actions .button {
  color: var(--cream);
  background: var(--black);
  border-color: var(--black);
}

.checklist-actions .button.secondary {
  color: var(--black);
  background: transparent;
  border-color: var(--black);
}

.checklist-actions .button:hover {
  color: var(--black);
  background: var(--yellow);
}

.checklist-page .page-section {
  background: var(--cream);
}

.checklist-page .section-head h2 {
  max-width: 15ch;
}

.checklist-grid {
  counter-reset: format;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.format {
  counter-increment: format;
  position: relative;
  min-width: 0;
  min-height: 260px;
  padding: clamp(28px, 4vw, 46px);
  color: var(--black);
  background: var(--cream);
  border: 2px solid var(--black);
  transition: color .2s ease, background .2s ease, transform .22s var(--ease-out);
}

.format::before {
  display: block;
  margin-bottom: clamp(46px, 7vw, 85px);
  color: var(--coral-dark);
  font-family: var(--display);
  font-size: .62rem;
  font-weight: 700;
  content: counter(format, decimal-leading-zero);
}

.format:hover {
  color: var(--cream);
  background: var(--black);
  transform: translateY(-5px);
}

.format h2 {
  max-width: 21ch;
  font-family: var(--sans);
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  line-height: 1.08;
}

.format p {
  max-width: 49ch;
  margin: 16px 0 0;
  color: currentColor;
  font-size: .9rem;
}

.checklist-page .final-cta {
  color: var(--cream);
  background: var(--black);
}

.checklist-page .final-cta .shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, .55fr);
  gap: clamp(30px, 8vw, 110px);
  align-items: end;
}

.checklist-page .final-cta h2 {
  max-width: 13ch;
  grid-row: span 2;
}

.checklist-page .final-cta p {
  max-width: 43ch;
  margin: 0;
  color: #aaa39a;
}

.checklist-page .final-email {
  color: var(--cream);
  border-color: var(--coral);
}

.error-page {
  min-height: 100vh;
  color: var(--black);
  background: var(--coral);
}

.error-page main {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding-block: 60px;
}

.error-page .error-card {
  position: relative;
  padding: clamp(34px, 7vw, 80px);
  color: var(--cream);
  background: var(--black);
  border: 2px solid var(--black);
  box-shadow: 13px 14px 0 var(--yellow);
  overflow: clip;
}

.error-page .error-card::after {
  position: absolute;
  right: -25px;
  bottom: -50px;
  color: rgb(244 239 229 / 8%);
  font-size: clamp(11rem, 31vw, 28rem);
  font-weight: 800;
  letter-spacing: -.1em;
  line-height: .8;
  content: "404";
}

.error-page .error-card > * {
  position: relative;
  z-index: 1;
}

.error-page .kicker {
  margin: 0 0 22px;
  color: var(--yellow);
  font-family: var(--display);
  font-size: .65rem;
  font-weight: 700;
}

.error-page .article-title {
  max-width: 11ch;
}

.error-page .error-copy {
  max-width: 48ch;
  margin: 24px 0 0;
  color: #aaa39a;
}

.centered-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 30px;
}

.centered-actions .button {
  color: var(--black);
  background: var(--cream);
  border-color: var(--cream);
}

.centered-actions .button.secondary {
  color: var(--cream);
  background: transparent;
}

@media (max-width: 860px) {
  .nav-mail {
    display: none;
  }

  .article-body,
  .checklist-page .final-cta .shell {
    grid-template-columns: 1fr;
  }

  .article-body {
    gap: 48px;
  }

  .article-aside {
    position: static;
    top: auto;
  }

  .article-aside ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 20px;
  }

  .checklist-grid {
    grid-template-columns: 1fr;
  }

  .checklist-page .final-cta p {
    margin-top: 20px;
  }
}

@media (max-width: 620px) {
  .article-hero {
    padding-block: 65px 80px;
  }

  .article-title {
    max-width: 100%;
  }

  .article-meta {
    gap: 8px 15px;
  }

  .article-meta > *::after {
    display: none;
  }

  .article-aside ul {
    grid-template-columns: 1fr;
  }

  .prose h2 {
    max-width: 100%;
  }

  .checklist-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .checklist-actions .button {
    width: 100%;
  }

  .format {
    min-height: 0;
  }
}

@media print {
  .site-header,
  .site-footer,
  .checklist-actions,
  .final-cta {
    display: none !important;
  }

  body,
  .checklist-page .page-section {
    color: #000;
    background: #fff;
  }

  .checklist-hero {
    padding-block: 24px;
    color: #000;
    background: #fff;
    border: 0;
  }

  .checklist-hero::after {
    display: none;
  }

  .print-mark {
    display: block;
    font-size: 10px;
  }

  .checklist-hero .article-title {
    margin-top: 12px;
    font-size: 30px;
  }

  .checklist-hero .article-deck {
    margin-top: 12px;
    font-size: 12px;
  }

  .checklist-page .page-section {
    padding-block: 20px;
  }

  .checklist-page .section-head {
    display: none;
  }

  .checklist-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .format {
    min-height: 0;
    break-inside: avoid;
    padding: 14px;
    border: 1px solid #000;
  }

  .format::before {
    margin-bottom: 10px;
    color: #000;
    font-size: 8px;
  }

  .format h2 {
    font-size: 13px;
  }

  .format p {
    margin-top: 6px;
    font-size: 9px;
    line-height: 1.35;
  }
}
