:root {
  --ink: #171411;
  --ink-soft: #504a43;
  --paper: #f2ede5;
  --paper-deep: #e5ded3;
  --white: #fffdf9;
  --red: #8d0f2a;
  --red-bright: #bc2141;
  --line: rgba(23, 20, 17, 0.16);
  --radius-large: 34px;
  --radius-medium: 22px;
  --shadow: 0 24px 70px rgba(45, 28, 20, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 88% 7%, rgba(141, 15, 42, 0.11), transparent 25rem),
    radial-gradient(circle at 5% 38%, rgba(120, 90, 51, 0.08), transparent 28rem),
    var(--paper);
  content: "";
}

.page-noise {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.35;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.035'/%3E%3C/svg%3E");
}

a {
  color: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header,
main,
.site-footer {
  width: min(1120px, calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 92px;
  border-bottom: 1px solid var(--line);
}

.wordmark,
.header-link {
  text-decoration: none;
}

.wordmark {
  display: block;
  width: 148px;
  height: 70px;
  overflow: hidden;
}

.wordmark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.wordmark-mark,
.footer-mark {
  display: grid;
  place-items: center;
  width: 38px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: -0.05em;
}

.header-link {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  padding: 10px 15px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink-soft);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: border-color 160ms ease, background 160ms ease, color 160ms ease;
}

.header-link:hover {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--white);
}

.section-kicker {
  margin: 0;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h2,
p {
  text-wrap: pretty;
}

.featured {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 36px;
  align-items: end;
  overflow: hidden;
  padding: clamp(32px, 5vw, 58px);
  border-radius: var(--radius-large);
  background: var(--red);
  color: var(--white);
  box-shadow: 0 22px 60px rgba(91, 4, 24, 0.22);
  margin-top: clamp(42px, 6vw, 72px);
}

.featured::after {
  position: absolute;
  top: -180px;
  right: -115px;
  width: 370px;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  box-shadow:
    0 0 0 45px rgba(255, 255, 255, 0.035),
    0 0 0 95px rgba(255, 255, 255, 0.025);
  content: "";
}

.featured > * {
  position: relative;
  z-index: 1;
}

.section-kicker {
  color: var(--red);
}

.featured .section-kicker,
.resource-card--dark .resource-type {
  color: rgba(255, 255, 255, 0.68);
}

.featured h2,
.contact-strip h2,
.section-heading h2 {
  margin: 7px 0 0;
  letter-spacing: -0.045em;
  line-height: 1.03;
}

.featured h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.45rem);
  font-weight: 400;
}

.featured p:last-child {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.featured-action {
  display: inline-flex;
  gap: 28px;
  align-items: center;
  justify-content: space-between;
  min-width: 190px;
  padding: 15px 18px;
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  font-size: 0.83rem;
  font-weight: 800;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.featured-action:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(26, 8, 12, 0.2);
}

.contact-strip {
  display: grid;
  grid-template-columns: auto minmax(190px, 0.7fr) minmax(320px, 1.3fr);
  gap: 20px;
  align-items: center;
  margin-top: 20px;
  padding: 24px 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-medium);
  background: rgba(255, 253, 249, 0.52);
}

.contact-icon {
  display: grid;
  place-items: center;
  width: 54px;
  aspect-ratio: 1;
  border-radius: 16px;
  background: var(--ink);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 850;
  letter-spacing: -0.04em;
}

.contact-strip h2 {
  font-size: 1.35rem;
}

.contact-actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-end;
}

.contact-role {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.88rem;
  text-align: right;
}

.contact-download {
  display: inline-flex;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
  padding: 11px 15px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 160ms ease, transform 160ms ease;
}

.contact-download:hover {
  background: var(--red);
  transform: translateY(-2px);
}

.resources-section {
  padding-top: clamp(86px, 11vw, 145px);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 40px;
  align-items: end;
  margin-bottom: 30px;
}

.section-heading h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.5rem, 6vw, 5.35rem);
  font-weight: 400;
}

.section-heading > p {
  max-width: 390px;
  margin: 0 0 7px auto;
  color: var(--ink-soft);
  font-size: 0.96rem;
  line-height: 1.65;
}

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

.resource-grid--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.resource-card {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 20px;
  align-items: start;
  min-height: 188px;
  padding: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-medium);
  background: rgba(255, 253, 249, 0.68);
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.resource-card:hover {
  z-index: 1;
  border-color: rgba(141, 15, 42, 0.58);
  background: var(--white);
  box-shadow: 0 18px 45px rgba(40, 25, 16, 0.1);
  transform: translateY(-4px);
}

.resource-card--wide {
  grid-column: 1 / -1;
  min-height: 160px;
  background: var(--paper-deep);
}

.resource-card--media {
  background: linear-gradient(135deg, rgba(141, 15, 42, 0.08), rgba(255, 253, 249, 0.7) 48%);
}

.resource-card--dark {
  min-height: 210px;
  border-color: transparent;
  background: var(--ink);
  color: var(--white);
}

.resource-card--dark:hover {
  border-color: transparent;
  background: #24201c;
  box-shadow: 0 18px 50px rgba(23, 20, 17, 0.22);
}

.resource-number {
  color: var(--red);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.resource-card--dark .resource-number {
  color: #dd5a74;
}

.resource-copy {
  display: flex;
  flex-direction: column;
  align-self: end;
  min-width: 0;
}

.resource-type {
  margin-bottom: 7px;
  color: var(--red);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.resource-copy strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.5rem, 3vw, 2.05rem);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1.08;
}

.resource-copy > span:last-child {
  margin-top: 10px;
  color: var(--ink-soft);
  font-size: 0.8rem;
}

.resource-card--dark .resource-copy > span:last-child {
  color: rgba(255, 255, 255, 0.6);
}

.resource-arrow {
  display: grid;
  place-items: center;
  width: 36px;
  aspect-ratio: 1;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-size: 1rem;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.resource-card:hover .resource-arrow {
  background: var(--red);
  color: var(--white);
  transform: rotate(7deg);
}

.resource-card--dark .resource-arrow {
  border-color: rgba(255, 255, 255, 0.19);
}

.media-badge {
  position: absolute;
  top: -17px;
  right: 54px;
  display: grid;
  width: 96px;
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid rgba(141, 15, 42, 0.14);
  border-radius: 50%;
  color: rgba(141, 15, 42, 0.55);
  font-size: 0.58rem;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.resources-section--paid {
  padding-bottom: clamp(90px, 12vw, 155px);
}

.nowrap {
  white-space: nowrap;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 36px 0 44px;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 0.78rem;
}

.site-footer > div {
  display: flex;
  gap: 14px;
  align-items: center;
}

.site-footer p {
  margin: 0;
}

.site-footer strong {
  color: var(--ink);
}

a:focus-visible {
  outline: 3px solid rgba(188, 33, 65, 0.38);
  outline-offset: 4px;
}

@media (max-width: 780px) {
  .site-header,
  main,
  .site-footer {
    width: min(100% - 28px, 650px);
  }

  .site-header {
    min-height: 76px;
  }

  .header-link {
    padding: 9px 12px;
    font-size: 0.65rem;
  }

  .featured {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .featured-action {
    width: fit-content;
  }

  .contact-strip {
    grid-template-columns: auto 1fr;
  }

  .contact-actions {
    grid-column: 2;
    align-items: flex-start;
  }

  .contact-role {
    text-align: left;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .section-heading > p {
    margin-left: 0;
  }

  .resource-grid,
  .resource-grid--two {
    grid-template-columns: 1fr;
  }

  .resource-card--wide {
    grid-column: auto;
  }
}

@media (max-width: 470px) {
  .wordmark {
    width: 124px;
    height: 60px;
  }

  .featured {
    padding: 29px 24px;
    border-radius: 25px;
  }

  .contact-strip {
    gap: 14px;
    padding: 20px;
  }

  .contact-actions {
    grid-column: 1 / -1;
  }

  .resource-card {
    min-height: 176px;
    padding: 21px;
  }

  .resource-arrow {
    width: 32px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
