:root {
  --ink: #151515;
  --muted: #595959;
  --soft: #f6f6f6;
  --soft-2: #eeeeee;
  --line: #1c1c1c;
  --button: #4f4f4f;
  --blue-ink: #07134a;
  --focus: #0f4c81;
  --font-body: "Manrope", Arial, sans-serif;
  --font-display: "Space Grotesk", "Manrope", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 500;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

body::selection {
  background: #111;
  color: #fff;
}

h1,
h2,
h3,
.brand,
.site-nav a,
.button,
.site-footer__name,
.site-footer a {
  font-family: var(--font-display);
}

img,
svg,
iframe {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-underline-offset: 0.18em;
  text-decoration-thickness: 1px;
}

a:hover {
  text-decoration-thickness: 2px;
}

:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 1000;
  transform: translateY(-140%);
  background: #fff;
  color: var(--ink);
  padding: 12px 16px;
  border: 2px solid var(--ink);
  font-weight: 700;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: relative;
  background: #fff;
  border-bottom: 0;
}

.site-header::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: min(1100px, calc(100% - 40px));
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, #e8e8e8 12%, #d8d8d8 50%, #e8e8e8 88%, transparent);
}

.site-header__inner {
  width: min(1120px, calc(100% - 40px));
  min-height: 118px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  grid-template-rows: auto auto;
  align-items: center;
  gap: 4px 42px;
  padding: 22px 0 12px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 58px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
  line-height: 0.92;
  letter-spacing: 0;
}

.brand img {
  width: 54px;
  height: 54px;
  object-fit: contain;
}

.site-nav {
  display: grid;
  grid-template-columns: repeat(6, minmax(88px, 1fr));
  gap: 16px;
  align-self: center;
  padding-top: 0;
}

.site-nav a {
  min-height: 58px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  border-top: 2px solid var(--line);
  color: var(--ink);
  padding-top: 15px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.site-nav a:hover {
  transform: translateY(-2px);
  background: #f8f8f8;
}

.site-nav a.is-active {
  border-top-width: 4px;
}

.site-header__place {
  grid-column: 2;
  margin: -8px 0 0;
  justify-self: end;
  color: #777;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.menu-toggle {
  display: none;
}

main {
  min-height: 60vh;
}

.button {
  min-height: 44px;
  min-width: 116px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  padding: 12px 22px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
}

.button--dark {
  background: #050505;
  color: #fff;
}

.button--muted {
  background: var(--button);
  color: #fff;
}

.site-footer {
  background: #f7f7f7;
  border-top: 1px solid #e7e7e7;
}

.site-footer__inner {
  width: min(1120px, calc(100% - 40px));
  min-height: 150px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(260px, 1fr) auto;
  gap: 22px 42px;
  align-items: center;
  padding: 30px 0;
  font-size: 13px;
  font-weight: 600;
}

.site-footer__copy {
  display: grid;
  gap: 10px;
  align-content: center;
}

.site-footer__inner p {
  margin: 0;
}

.site-footer__name {
  color: var(--ink);
  font-size: 20px;
  font-weight: 700;
}

.site-footer__meta {
  color: var(--muted);
  font-weight: 500;
}

.site-footer__contact {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.site-footer nav {
  display: flex;
  gap: 10px;
  align-items: center;
}

.site-footer a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  padding: 0 22px;
  border: 1px solid #e5e5e5;
  background: #fff;
  text-decoration: none;
  letter-spacing: 0;
  font-size: 12px;
  font-weight: 700;
  overflow-wrap: anywhere;
  transition: border-color 160ms ease, transform 160ms ease;
}

.site-footer a:hover {
  border-color: #111;
  transform: translateY(-1px);
}

.home-hero {
  position: relative;
  min-height: 650px;
  display: grid;
  grid-template-columns: minmax(0, 920px);
  grid-template-areas:
    "media"
    "quote";
  align-items: center;
  justify-content: center;
  justify-items: center;
  padding: 52px 20px 42px;
  overflow: visible;
  background: #fff;
}

.home-hero::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 68px;
  width: min(820px, 72vw);
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, #dadada 18%, #dadada 82%, transparent);
}

.home-hero__media {
  grid-area: media;
  width: min(920px, 78vw);
  transform: rotate(-0.4deg);
}

.home-hero__media img {
  width: 100%;
  height: auto;
}

.home-hero__quote {
  grid-area: quote;
  position: relative;
  z-index: 2;
  width: min(560px, 90vw);
  margin: -18px auto 0;
  text-align: center;
  color: #3e3e3e;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.45;
  font-style: italic;
}

.home-hero__quote p {
  margin: 0 0 20px;
}

.home-hero__quote cite {
  font-style: italic;
  font-weight: 800;
}

.cta-strip {
  min-height: 122px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  background: var(--soft);
  border-top: 1px solid #ececec;
  border-bottom: 1px solid #ececec;
}

.cta-strip p {
  margin: 0;
  color: #555;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0;
}

.home-pulse {
  width: min(920px, calc(100% - 42px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  padding: 58px 0 18px;
}

.home-pulse p {
  min-height: 92px;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  border-top: 2px solid #111;
  color: #3f3f3f;
  font-size: 15px;
  font-weight: 800;
}

.home-pulse strong {
  color: #111;
  font-size: 28px;
  line-height: 1;
}

.text-section {
  padding: 36px 20px 68px;
  background: #fff;
}

.text-section--intro {
  padding-top: 42px;
}

.text-section--last {
  padding-top: 72px;
  padding-bottom: 78px;
}

.home-manifest .content-narrow {
  position: relative;
}

.home-manifest .content-narrow::before {
  content: "manifest";
  position: absolute;
  left: -115px;
  top: 4px;
  color: #aaa;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
  transform: rotate(-90deg);
  transform-origin: left top;
}

.content-narrow {
  width: min(660px, calc(100% - 24px));
  margin: 0 auto;
}

.content-narrow h1,
.content-narrow h2 {
  margin: 0 0 26px;
  font-size: 29px;
  line-height: 1.16;
  font-weight: 700;
}

.content-narrow p,
.content-narrow li {
  color: #5d5d5d;
  font-size: 17px;
  font-weight: 600;
}

.content-narrow p {
  margin: 0 0 26px;
}

.content-narrow ul {
  margin: -14px 0 0;
  padding-left: 22px;
}

.quote-row {
  position: relative;
  width: min(650px, calc(100% - 36px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 62px;
  align-items: center;
  padding: 30px 0 54px;
}

.quote-row--home::before {
  content: "";
  position: absolute;
  left: 170px;
  top: 26px;
  bottom: 42px;
  width: 1px;
  background: #e7e7e7;
}

.quote-row img {
  width: 150px;
  height: auto;
}

.quote-row blockquote {
  margin: 0;
  color: #666;
  font-size: 16px;
  font-weight: 700;
  font-style: italic;
}

.quote-row cite {
  display: block;
  margin-top: 24px;
  color: #555;
  font-style: italic;
}

.video-band {
  background: var(--soft);
  padding: 34px 20px 54px;
}

.video-band--home {
  padding: 48px 20px 58px;
  border-top: 1px solid #ececec;
  border-bottom: 1px solid #ececec;
}

.video-frame {
  width: min(480px, 90vw);
  aspect-ratio: 16 / 9;
  margin: 0 auto;
  background: #000;
  box-shadow: 0 0 0 12px #fff, 0 20px 54px rgba(0, 0, 0, 0.08);
}

.video-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.split-page {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(460px, 1fr);
  background: #f4f4f4;
}

.split-page__art {
  min-height: 760px;
  background: linear-gradient(180deg, #fff 0%, #fff 72%, #fafafa 100%);
  display: grid;
  align-content: center;
  justify-items: center;
  overflow: hidden;
}

.foundation-art {
  gap: 30px;
}

.foundation-art__main {
  width: min(640px, 88%);
  height: auto;
}

.foundation-art__secondary {
  width: min(300px, 54%);
  height: auto;
}

.split-page__copy {
  max-width: 650px;
  padding: 82px 48px 84px;
}

.split-page__copy h1,
.split-page__copy h2 {
  margin: 0 0 32px;
  text-transform: uppercase;
  font-size: 22px;
  font-weight: 700;
}

.split-page__copy h2 {
  margin-top: 92px;
}

.split-page__copy p,
.split-page__copy li {
  font-size: 18px;
  line-height: 1.55;
  font-weight: 600;
  color: #3f3f3f;
}

.split-page__copy p {
  margin: 0 0 24px;
}

.split-page__copy ol {
  padding-left: 24px;
  margin: 0 0 54px;
}

.manifest-page,
.legal-page {
  width: min(760px, calc(100% - 40px));
  margin: 0 auto;
  padding: 86px 0 92px;
}

.manifest-page {
  position: relative;
}

.manifest-page::before {
  content: "manifest";
  position: absolute;
  left: -116px;
  top: 96px;
  color: #aaa;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
  transform: rotate(-90deg);
  transform-origin: left top;
}

.manifest-page h1 {
  max-width: 430px;
  margin: 0 0 72px;
  font-size: 45px;
  line-height: 1.05;
  font-weight: 700;
}

.manifest-page__lead {
  margin-bottom: 24px;
}

.manifest-page h2,
.legal-page h2 {
  margin: 56px 0 18px;
  font-size: 22px;
  font-weight: 700;
}

.manifest-page p,
.legal-page p {
  margin: 0 0 24px;
  font-size: 17px;
  line-height: 1.7;
  font-weight: 600;
}

.manifest-page__download {
  margin-top: 42px;
}

.legal-page h1 {
  margin: 0 0 28px;
  font-size: 38px;
  line-height: 1.1;
  font-weight: 700;
}

.actions-hero {
  position: relative;
  min-height: 340px;
  display: grid;
  grid-template-columns: 300px minmax(0, 690px);
  gap: 86px;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
  background: linear-gradient(90deg, #fff 0 18%, #f3f3f3 18% 100%);
  overflow: hidden;
}

.actions-hero img {
  width: 300px;
  height: 300px;
  object-fit: cover;
  object-position: top;
}

.actions-hero h1 {
  margin: 0 0 10px;
  font-size: 62px;
  line-height: 1;
  font-weight: 700;
}

.actions-hero p {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
}

.projects-grid {
  position: relative;
  width: min(1060px, calc(100% - 40px));
  margin: 0 auto;
  background: #fff;
  display: grid;
  grid-template-columns: repeat(2, minmax(260px, 410px));
  justify-content: center;
  gap: 42px 104px;
  padding: 74px 0 104px;
}

.project-card {
  position: relative;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  padding: 28px 0 28px 112px;
  border-top: 2px solid #111;
}

.project-card--featured {
  grid-column: 1 / -1;
  max-width: 560px;
  justify-self: center;
  align-items: center;
  text-align: center;
  padding-left: 0;
  border-top-width: 3px;
}

.project-card img {
  position: absolute;
  left: 0;
  top: 24px;
  width: 78px;
  height: 78px;
  margin-bottom: 0;
}

.project-card--featured img {
  position: static;
  width: 104px;
  height: 104px;
  margin-bottom: 18px;
}

.project-card__label {
  margin: 0 0 2px;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 800;
}

.project-card h2 {
  margin: 0 0 22px;
  font-size: 17px;
  line-height: 1.35;
  font-weight: 700;
  text-decoration: underline;
}

.project-card__note {
  margin-top: -8px;
}

.project-card p {
  max-width: 310px;
  margin: 0 0 12px;
  font-size: 13px;
  line-height: 1.55;
  font-weight: 600;
}

.project-card__cta {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 4px;
  padding: 0 14px;
  border: 1px solid #111;
  color: #111;
  background: #fff;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.project-card__cta:hover {
  background: #111;
  color: #fff;
  transform: translateY(-1px);
}

.about-page {
  min-height: 620px;
  display: grid;
  grid-template-columns: minmax(240px, 330px) minmax(360px, 500px) minmax(240px, 330px);
  gap: 44px;
  align-items: center;
  justify-content: center;
  padding: 44px 20px;
  background: linear-gradient(90deg, #f4f4f4 0%, #f4f4f4 50%, #fafafa 50%, #fafafa 100%);
}

.about-page img {
  width: min(500px, 100%);
  height: auto;
  aspect-ratio: 460 / 543;
  object-fit: cover;
  border: 10px solid #fff;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.09);
}

.about-page__person {
  padding: 34px 0;
  border-top: 3px solid #111;
}

.about-page__person--left {
  justify-self: end;
}

.about-page__person--right {
  justify-self: start;
}

.about-page h1,
.about-page h2 {
  margin: 0 0 28px;
  font-size: 38px;
  line-height: 1.1;
  font-weight: 700;
}

.about-page p {
  margin: 0 0 28px;
  font-size: 22px;
  line-height: 1.35;
  font-weight: 600;
}

.recommend-page {
  min-height: 640px;
  display: grid;
  grid-template-columns: minmax(420px, 640px) 338px;
  justify-content: center;
  align-items: center;
  gap: 100px;
  padding: 54px 20px;
  background: linear-gradient(90deg, #f4f4f4 0%, #f4f4f4 50%, #fff 50%, #fff 100%);
}

.recommend-page__content {
  border-top: 3px solid #111;
  padding-top: 26px;
}

.recommend-page h1 {
  margin: 0 0 20px;
  font-size: 68px;
  line-height: 1;
  font-weight: 700;
}

.recommend-page p {
  margin: 0 0 32px;
  font-size: 21px;
  font-weight: 600;
}

.link-list {
  display: grid;
  gap: 18px;
  margin: 0 0 84px;
  padding: 0 0 0 34px;
  list-style: none;
}

.link-list a,
.download-link {
  font-size: 29px;
  font-weight: 700;
}

.recommend-page__download {
  margin-bottom: 24px;
}

.download-link {
  display: inline-block;
  margin-left: 42px;
}

.recommend-page img {
  width: 338px;
  height: 496px;
  object-fit: cover;
  object-position: top;
  transform: rotate(1.2deg);
  filter: contrast(1.04);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: #fff;
  border-top: 1px solid #f1f1f1;
  border-bottom: 1px solid #f1f1f1;
}

.contact-grid article {
  min-height: 304px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 30px 20px;
  text-align: center;
  border-right: 1px solid #efefef;
}

.contact-grid article:first-child {
  background: var(--soft);
}

.contact-grid article:last-child {
  border-right: 0;
}

.contact-icon {
  width: 38px;
  height: 38px;
  margin-bottom: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
  color: var(--blue-ink);
}

.contact-grid h1,
.contact-grid h2,
.account-section h2 {
  margin: 0 0 24px;
  font-size: 24px;
  line-height: 1.2;
  font-weight: 700;
}

.contact-grid p,
.account-section p {
  margin: 0 0 10px;
  font-size: 20px;
  font-weight: 600;
  overflow-wrap: anywhere;
}

.account-section {
  min-height: 210px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #fff;
  text-align: center;
}

.account-section .contact-icon {
  width: 52px;
  height: 52px;
  margin-bottom: 10px;
}

.map-section {
  position: relative;
  min-height: 430px;
  background: #ededed;
  border-top: 1px solid #dedede;
  border-bottom: 1px solid #dedede;
  overflow: hidden;
}

.map-section__bar {
  position: absolute;
  left: 50%;
  top: 24px;
  z-index: 2;
  width: min(1120px, calc(100% - 40px));
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  transform: translateX(-50%);
  padding: 14px 16px 14px 22px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid #111;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.12);
}

.map-section__bar p {
  margin: 0;
  display: grid;
  gap: 2px;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.35;
  font-weight: 600;
}

.map-section__bar strong {
  font-family: var(--font-display);
  font-size: 19px;
  line-height: 1.2;
}

.map-section__bar span {
  color: var(--muted);
}

.map-section__bar .button {
  min-width: 140px;
  white-space: nowrap;
}

.map-section iframe {
  width: 100%;
  height: 430px;
  border: 0;
  filter: grayscale(100%) contrast(1.04);
}

@media (max-width: 980px) {
  body {
    font-size: 16px;
  }

  .site-header__inner {
    width: min(100% - 28px, 760px);
    min-height: 86px;
    grid-template-columns: 1fr auto;
    align-items: center;
    padding: 18px 0;
  }

  .site-header__place {
    grid-column: 1 / -1;
    justify-self: start;
    margin: -4px 0 0;
  }

  .menu-toggle {
    width: 48px;
    height: 48px;
    display: inline-grid;
    place-content: center;
    gap: 5px;
    border: 1px solid var(--ink);
    background: #fff;
    padding: 0;
  }

  .menu-toggle span {
    width: 22px;
    height: 2px;
    background: var(--ink);
  }

  .site-nav {
    grid-column: 1 / -1;
    display: none;
    grid-template-columns: 1fr;
    gap: 0;
    padding-top: 8px;
  }

  .site-nav.is-open {
    display: grid;
  }

  .site-nav a {
    border-top: 1px solid #d8d8d8;
    justify-content: flex-start;
    padding-left: 4px;
    padding-top: 13px;
  }

  .site-nav a.is-active {
    border-top-width: 1px;
    font-weight: 900;
  }

  .home-hero {
    grid-template-columns: 1fr;
    grid-template-areas:
      "media"
      "quote";
    min-height: 0;
    padding: 34px 18px 44px;
  }

  .home-hero__media {
    width: min(760px, 92vw);
  }

  .home-hero__quote {
    margin-top: -20px;
  }

  .cta-strip {
    min-height: 112px;
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .home-pulse {
    grid-template-columns: 1fr;
    gap: 14px;
    padding-top: 34px;
  }

  .home-pulse p {
    min-height: 62px;
  }

  .quote-row,
  .split-page,
  .actions-hero,
  .about-page,
  .recommend-page,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .quote-row {
    gap: 22px;
    justify-items: center;
    text-align: center;
  }

  .quote-row--home::before,
  .home-manifest .content-narrow::before,
  .manifest-page::before {
    display: none;
  }

  .split-page__art {
    min-height: 420px;
  }

  .split-page__copy {
    max-width: none;
    padding: 44px 22px 56px;
  }

  .actions-hero {
    gap: 28px;
    min-height: 0;
    padding: 34px 20px 42px;
    text-align: center;
  }

  .actions-hero img {
    width: 220px;
    height: 260px;
    justify-self: center;
  }

  .projects-grid {
    grid-template-columns: minmax(260px, 360px);
    gap: 26px;
    padding-top: 48px;
    padding-bottom: 68px;
  }

  .project-card {
    min-height: 0;
    padding-left: 96px;
  }

  .project-card--featured {
    grid-column: auto;
    padding-left: 0;
  }

  .about-page {
    padding: 36px 20px;
    background: var(--soft);
  }

  .about-page img {
    width: min(460px, 100%);
    height: auto;
    justify-self: center;
  }

  .about-page__person {
    justify-self: center;
    width: min(460px, 100%);
    padding: 24px 0;
    text-align: center;
  }

  .recommend-page {
    gap: 32px;
    min-height: 0;
    padding: 48px 22px;
    background: var(--soft);
  }

  .recommend-page img {
    justify-self: center;
  }

  .contact-grid article {
    min-height: 210px;
    border-right: 0;
    border-bottom: 1px solid #efefef;
  }

  .contact-grid article:last-child {
    border-bottom: 0;
  }

  .map-section {
    min-height: 500px;
  }

  .map-section__bar {
    top: 16px;
    width: min(100% - 28px, 560px);
    min-height: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    padding: 16px;
    text-align: center;
  }

  .map-section__bar .button {
    width: 100%;
  }

  .map-section iframe {
    height: 500px;
  }

  .site-footer__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .site-footer__copy,
  .site-footer nav {
    grid-column: auto;
    grid-row: auto;
  }

  .site-footer__contact {
    justify-content: center;
  }

  .site-footer nav {
    justify-content: center;
    flex-wrap: wrap;
  }
}

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

  .site-nav a,
  .site-footer a {
    transition: none;
  }
}

@media (max-width: 560px) {
  .brand {
    font-size: 14px;
  }

  .content-narrow,
  .manifest-page,
  .legal-page {
    width: min(100% - 32px, 660px);
  }

  .manifest-page h1 {
    margin-bottom: 52px;
    font-size: 32px;
  }

  .recommend-page h1,
  .actions-hero h1 {
    font-size: 42px;
  }

  .about-page h1,
  .about-page h2 {
    font-size: 32px;
  }

  .about-page p,
  .contact-grid p,
  .account-section p {
    font-size: 18px;
  }

  .link-list {
    padding-left: 0;
  }

  .link-list a,
  .download-link {
    font-size: 22px;
    overflow-wrap: anywhere;
  }

  .download-link {
    margin-left: 0;
  }

  .site-footer {
    padding-bottom: 0;
  }
}
