@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("/fonts/montserrat-latin.woff2") format("woff2");
}

:root {
  color-scheme: light;
  --paper: #f7f5ef;
  --white: #ffffff;
  --ink: #39294d;
  --muted: #62576f;
  --thread-pink: #e64a8a;
  --thread-pink-accessible: #c83674;
  --thread-green: #00a6a6;
  --thread-green-soft: #d9f3ef;
  --line: rgba(57, 41, 77, 0.18);
  --sans: "Montserrat", ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--paper);
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  z-index: 20;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.7rem 1rem;
  background: var(--ink);
  color: var(--white);
  transform: translateY(-200%);
}

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

.site-header,
.hero,
.section,
.site-footer {
  width: min(100% - 3rem, 1180px);
  margin-inline: auto;
}

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

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 0.72rem;
  color: var(--ink);
  text-decoration: none;
}

.wordmark-type {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.wordmark strong {
  font-size: 1.13rem;
  font-weight: 800;
  letter-spacing: -0.05em;
}

.wordmark small {
  margin-top: 0.25rem;
  color: var(--muted);
  font-size: 0.56rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.mark {
  width: 46px;
  height: 46px;
}

.header-link,
.footer-links a,
.item-list a {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-decoration: none;
  text-transform: uppercase;
}

.header-link:hover,
.header-link:focus-visible,
.footer-links a:hover,
.footer-links a:focus-visible,
.item-list a:hover,
.item-list a:focus-visible {
  color: var(--thread-pink-accessible);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 0.32em;
}

.hero {
  min-height: min(740px, calc(100vh - 96px));
  padding: clamp(4.5rem, 9vw, 8rem) 0;
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
  align-items: center;
  gap: clamp(3rem, 8vw, 8rem);
}

.eyebrow {
  margin: 0 0 1.5rem;
  color: var(--thread-pink-accessible);
  font-size: 0.68rem;
  font-weight: 750;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  text-wrap: pretty;
}

h1,
h2,
h3 {
  margin-top: 0;
  letter-spacing: -0.055em;
}

h1,
h2 {
  line-height: 0.98;
}

h1 {
  max-width: 12ch;
  margin-bottom: 2rem;
  font-size: clamp(4rem, 8vw, 7.35rem);
  font-weight: 750;
}

h1 em {
  color: var(--thread-pink-accessible);
  font-style: normal;
  font-weight: inherit;
}

.lede {
  max-width: 610px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.23rem, 2vw, 1.58rem);
  font-weight: 500;
  line-height: 1.48;
}

.brand-study {
  position: relative;
  width: min(100%, 460px);
  aspect-ratio: 1;
  justify-self: end;
  display: grid;
  place-items: center;
}

.brand-field {
  position: absolute;
  inset: 5%;
  border-radius: 28%;
  background: var(--thread-green-soft);
  transform: rotate(45deg) scale(0.72);
}

.brand-study img {
  position: relative;
  width: 82%;
  filter: drop-shadow(18px 24px 0 rgba(16, 31, 54, 0.09));
}

.section {
  padding: clamp(6rem, 11vw, 10rem) 0;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: minmax(250px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(4rem, 10vw, 9rem);
}

.section-intro {
  align-self: start;
  position: sticky;
  top: 3rem;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2.8rem, 5vw, 5rem);
  font-weight: 720;
}

.item-list {
  border-top: 2px solid var(--ink);
}

.item-list article {
  padding: 2.1rem 0 2.4rem;
  display: grid;
  grid-template-columns: 3rem minmax(0, 1fr);
  gap: 1rem;
  border-bottom: 1px solid var(--line);
}

.item-list article > span {
  color: var(--thread-pink-accessible);
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.12em;
}

.item-list h3 {
  margin-bottom: 0.65rem;
  font-size: clamp(1.55rem, 2.4vw, 2.15rem);
  font-weight: 720;
  line-height: 1.1;
}

.item-list p {
  max-width: 600px;
  margin: 0 0 0.9rem;
  color: var(--muted);
}

.item-list p:last-child {
  margin-bottom: 0;
}

.section-intro > p:last-child {
  margin: 1.6rem 0 0;
  color: var(--muted);
}

.item-list + p {
  max-width: 600px;
  margin: 1.9rem 0 0;
  color: var(--muted);
}

.closing {
  width: 100%;
  max-width: none;
  padding: clamp(6rem, 12vw, 11rem) max(1.5rem, calc((100vw - 1180px) / 2));
  background: var(--ink);
  color: var(--white);
}

.closing .eyebrow,
.closing > p:last-child {
  color: #b9ceff;
}

.closing h2 {
  max-width: 1000px;
  margin-bottom: 2.2rem;
}

.closing > p:last-child {
  margin: 0;
}

.site-footer {
  min-height: 140px;
  padding: 2rem 0;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 2rem;
}

.footer-mark .mark {
  width: 39px;
  height: 39px;
}

.footer-links {
  display: flex;
  gap: 1.4rem;
}

.copyright {
  margin: 0;
  color: var(--muted);
  font-size: 0.8rem;
}

.legal-page {
  width: min(100% - 3rem, 760px);
  min-height: calc(100vh - 236px);
  margin: 0 auto;
  padding: clamp(5rem, 10vw, 8rem) 0;
}

.legal-page h1 {
  margin-bottom: 2.5rem;
  font-size: clamp(3.5rem, 7vw, 6rem);
}

.legal-page h2 {
  margin: 3rem 0 1rem;
  font-size: 2rem;
  font-weight: 720;
  line-height: 1.15;
}

.legal-page p {
  color: var(--muted);
}

.button {
  display: inline-flex;
  min-height: 48px;
  margin-top: 1rem;
  padding: 0.7rem 1.15rem;
  align-items: center;
  border: 2px solid var(--ink);
  border-radius: 0.4rem;
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.button:hover,
.button:focus-visible {
  background: var(--ink);
  color: var(--white);
}

:focus-visible {
  outline: 3px solid var(--thread-pink-accessible);
  outline-offset: 5px;
}

@media (max-width: 820px) {
  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .brand-study {
    width: min(78vw, 410px);
    justify-self: center;
  }

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

  .section-intro {
    position: static;
  }
}

@media (max-width: 600px) {
  .site-header,
  .hero,
  .section,
  .site-footer {
    width: min(100% - 2rem, 1180px);
  }

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

  .wordmark small {
    display: none;
  }

  .hero {
    padding: 4.5rem 0 5.5rem;
  }

  h1 {
    font-size: clamp(3.4rem, 16vw, 5rem);
  }

  .section {
    padding: 5.5rem 0;
    gap: 3.5rem;
  }

  .closing {
    padding-inline: 1rem;
  }

  .site-footer {
    padding: 2.5rem 0;
    grid-template-columns: 1fr;
    gap: 1.3rem;
  }
}

@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}
