@font-face {
  font-family: "Marquee Moon";
  src: url("assets/fonts/marquee-moon.otf") format("opentype");
  font-display: swap;
  font-style: normal;
  font-weight: 400;
}

@font-face {
  font-family: "Mulish";
  src: url("assets/fonts/mulish-latin.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 200 900;
}

:root {
  --ink: #333;
  --paper: #fff;
  --charcoal: #222;
  --pink: #e2257b;
  --yellow: #e49f1a;
  --blue: #219eb4;
  --container: 940px;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  overscroll-behavior: none;
  text-size-adjust: 100%;
}

body {
  min-height: 100%;
  margin: 0;
  color: var(--ink);
  background-image: linear-gradient(283deg, #e1e4db, #fee);
  font-family: "Mulish", Arial, sans-serif;
  font-size: 14px;
  line-height: 20px;
  overscroll-behavior: none;
}

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

a {
  color: var(--ink);
  font-weight: 700;
  text-decoration-color: var(--charcoal);
  text-underline-offset: 4px;
}

.footer-lockup {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: min(100%, var(--container));
  padding: 24px;
}

.logo-lockup {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
}

.logo {
  display: block;
  color: var(--ink);
  font-family: "Marquee Moon", Impact, sans-serif;
  font-size: 42px;
  font-weight: 400;
  line-height: 42px;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.offerings {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.footer-details {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
}

.offerings a,
.eyebrow {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  text-transform: uppercase;
}

.offerings a {
  text-decoration: none;
}

.hero {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: min(100% - 30px, 700px);
  padding: 80px 0;
  text-align: center;
}

h1 {
  margin: 0;
  letter-spacing: -0.05rem;
  font-size: 38px;
  line-height: 44px;
}

.hero-content p:last-child {
  margin: 16px 0 0;
}

.accent-yellow {
  color: var(--yellow);
}

.accent-pink {
  color: var(--pink);
}

.image-section {
  display: flex;
  justify-content: center;
}

.image-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  width: min(100% - 30px, var(--container));
  padding: 20px 0 80px;
}

.image-grid img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1.25;
  object-fit: cover;
}

h2 {
  margin: 0;
  font-size: 24px;
  line-height: 30px;
}

.button {
  display: inline-block;
  padding: 9px 15px;
  border-radius: 16px;
  color: var(--pink);
  background-color: var(--paper);
  line-height: inherit;
  text-decoration: none;
}

.page-hero {
  display: flex;
  justify-content: center;
}

.standalone-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.standalone-page main {
  flex: 1;
  display: flex;
}

.standalone-page .page-hero {
  flex: 1;
  align-items: center;
}

.page-content {
  width: min(100% - 30px, 760px);
  padding: 80px 0;
}

.page-content h1 {
  max-width: 680px;
}

.page-content .lede {
  margin: 18px 0 0;
  max-width: 620px;
  font-size: 18px;
  line-height: 28px;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 36px 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  padding: 18px;
  background: rgba(255, 255, 255, 0.42);
  border-radius: 18px;
}

.page-cta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.button:focus-visible,
a:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
}

.site-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.site-footer address {
  margin: 0;
  padding: 0;
  font-style: italic;
  text-align: left;
}

@media (max-width: 991px) {
  :root {
    --container: 728px;
  }
}

@media (max-width: 479px) {
  .footer-lockup {
    gap: 8px;
    padding-top: 28px;
    padding-bottom: 28px;
  }

  .logo {
    font-size: 36px;
    line-height: 36px;
  }

  .offerings {
    gap: 0;
  }

  .offerings a,
  .eyebrow {
    font-size: 12px;
  }

  .hero-content {
    padding-right: 15px;
    padding-left: 15px;
  }

  .image-grid {
    grid-template-columns: 1fr;
    padding-bottom: 20px;
  }

  .page-content {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .feature-list {
    grid-template-columns: 1fr;
  }
}
