:root {
  --light-mystified: #D6E4D6;
  --candidate: #C6BE8D;
  --black-mesa: #242510;
}

.site-end-cta,
.site-end-cta *,
.site-footer,
.site-footer * {
  box-sizing: border-box;
}

.site-end-cta {
  width: 100%;
  margin: 0;
  border-radius: 0;
  background: var(--black-mesa, #242510);
  color: var(--light-mystified, #D6E4D6);
  padding: clamp(82px, 10vw, 132px) 20px;
  text-align: center;
  font-family: Inter, system-ui, sans-serif;
}

.site-end-cta h2 {
  max-width: 1200px;
  margin: 0 auto 22px;
  color: var(--light-mystified, #D6E4D6);
  font-size: clamp(48px, 6vw, 104px);
  font-weight: 600;
  letter-spacing: -.065em;
  line-height: .94;
}

.site-end-cta p {
  max-width: 720px;
  margin: 0 auto 36px;
  color: var(--candidate, #C6BE8D);
  font-size: clamp(18px, 1.7vw, 26px);
  font-weight: 400;
  line-height: 1.34;
}

.site-end-cta a,
.site-end-cta .pill {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 28px;
  border-radius: 999px;
  background: #fff;
  color: var(--black-mesa, #242510);
  font-size: 17px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
}

.site-footer {
  width: 100%;
  margin: 0;
  border-radius: 0;
  background: #151515;
  color: #fff2e9;
  padding: 32px 0 36px;
  font-family: Inter, system-ui, sans-serif;
}

.site-footer-grid,
.site-footer .footer-grid {
  width: min(1180px, calc(100% - 36px));
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1.1fr .9fr .9fr .9fr;
  gap: 34px;
}

.site-footer b {
  display: block;
  margin-bottom: 14px;
  color: #fff2e9;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.site-footer p,
.site-footer a {
  display: block;
  margin: 0 0 7px;
  color: rgba(255, 242, 233, .78);
  font-size: 14px;
  line-height: 1.35;
  text-decoration: none;
}

.site-footer-logo {
  width: min(1180px, calc(100% - 36px));
  margin: 44px auto 0;
  color: #fff2e9;
  font-size: clamp(52px, 9vw, 132px);
  line-height: .8;
  letter-spacing: -.08em;
  font-weight: 600;
}

.footer-bottom {
  width: min(1180px, calc(100% - 36px));
  margin: 30px auto 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 242, 233, .16);
  display: flex;
  justify-content: flex-end;
  gap: 18px;
  font-family: Inter, system-ui, sans-serif;
}

.footer-bottom a {
  color: rgba(255, 242, 233, .72);
  font-size: 13px;
  line-height: 1;
  text-decoration: none;
}

.site-nav {
  position: sticky;
  top: 18px;
  z-index: 20;
  width: min(1240px, calc(100% - 48px));
  margin: 22px auto 0;
  padding: 10px 12px 10px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border: 1px solid rgba(36, 37, 16, .18);
  border-radius: 999px;
  background: rgba(255, 255, 255, .3);
  box-shadow: 0 18px 44px rgba(36, 37, 16, .08);
  backdrop-filter: blur(18px) saturate(1.2);
  -webkit-backdrop-filter: blur(18px) saturate(1.2);
  color: var(--black-mesa, #242510);
  font-family: Inter, system-ui, sans-serif;
  font-size: 14px;
  font-weight: 600;
}

.site-nav a {
  color: inherit;
  text-decoration: none;
}

.site-nav .brand {
  font-family: Righteous, Inter, system-ui, sans-serif;
  font-size: 18px;
  line-height: 1;
  letter-spacing: .03em;
  text-transform: uppercase;
}

.site-nav .links {
  display: flex;
  align-items: center;
  gap: 44px;
}

.site-nav .pill {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border-radius: 999px;
  background: #fff;
  color: var(--black-mesa, #242510);
  font-weight: 600;
}

@media (max-width: 760px) {
  .site-end-cta {
    padding: 72px 18px;
  }

  .site-end-cta h2 {
    font-size: clamp(42px, 13vw, 64px);
  }

  .site-footer-grid,
  .site-footer .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .site-footer-logo {
    font-size: 56px;
  }

  .footer-bottom {
    justify-content: flex-start;
  }

  .site-nav {
    position: relative;
    top: auto;
    width: min(100% - 24px, 1240px);
    margin-top: 12px;
    align-items: center;
    gap: 12px;
    font-size: 12px;
  }

  .site-nav .brand {
    font-size: 14px;
  }

  .site-nav .links {
    display: none;
  }

  .site-nav .pill {
    margin-left: auto;
    min-height: 36px;
    padding: 0 14px;
  }
}
