@font-face {
  font-display: swap;
  font-family: "Bricolage Grotesque";
  font-style: normal;
  font-weight: 200;
  src: url("./fonts/bricolage-grotesque-v9-latin-200.woff2") format("woff2");
}

@font-face {
  font-display: swap;
  font-family: "Bricolage Grotesque";
  font-style: normal;
  font-weight: 300;
  src: url("./fonts/bricolage-grotesque-v9-latin-300.woff2") format("woff2");
}

@font-face {
  font-display: swap;
  font-family: "Bricolage Grotesque";
  font-style: normal;
  font-weight: 400;
  src: url("./fonts/bricolage-grotesque-v9-latin-regular.woff2") format("woff2");
}

@font-face {
  font-display: swap;
  font-family: "Bricolage Grotesque";
  font-style: normal;
  font-weight: 500;
  src: url("./fonts/bricolage-grotesque-v9-latin-500.woff2") format("woff2");
}

@font-face {
  font-display: swap;
  font-family: "Bricolage Grotesque";
  font-style: normal;
  font-weight: 600;
  src: url("./fonts/bricolage-grotesque-v9-latin-600.woff2") format("woff2");
}

@font-face {
  font-display: swap;
  font-family: "Bricolage Grotesque";
  font-style: normal;
  font-weight: 700;
  src: url("./fonts/bricolage-grotesque-v9-latin-700.woff2") format("woff2");
}

:root {
  --bg: #fcfcfa;
  --text: #171717;
  --muted: #accba1;
  --line: #262626;
  --content-width: 34rem;
  --quote-width: 34rem;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
  font-family: "Bricolage Grotesque", sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.hero {
  flex: 1;
  padding: 3rem 6.5vw 0;
}

.hero__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 4rem;
}

.brand img {
  display: block;
  width: 11rem;
  height: auto;
}

.manifesto {
  width: min(100%, var(--quote-width));
  margin-top: 2rem;
  margin-right: 3vw;
  text-align: right;
  color: #111;
}

.manifesto__line {
  display: flex;
  justify-content: flex-end;
  align-items: baseline;
  gap: 1.1rem;
  font-size: 5rem;
  line-height: 0.96;
  letter-spacing: -0.05em;
  font-weight: 200;
}

.manifesto__line + .manifesto__line {
  margin-top: 0.38rem;
}

.manifesto__line--tight {
  gap: 0.7rem;
}

.manifesto__accent {
  color: var(--muted);
}

.intro {
  margin-top: 5.5rem;
  width: min(100%, var(--content-width));
  padding-bottom: 3.5rem;
}

.content-page {
  flex: 1;
  padding: 3rem 6.5vw 4rem;
}

.content-page__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 3rem;
}

.content-page__body {
  width: min(100%, 42rem);
  margin-top: 5.5rem;
}

.content-page__body h1 {
  margin: 0 0 2rem;
  color: var(--muted);
  font-size: 2.625rem;
  line-height: 1;
  letter-spacing: -0.04em;
  font-weight: 200;
}

.content-page__body p {
  margin: 0 0 1.5rem;
  font-size: 1.125rem;
  line-height: 1.5;
  font-weight: 400;
  letter-spacing: -0.02em;
}

.content-page__body strong {
  font-weight: 600;
}

.intro h1 {
  margin: 0 0 1.7rem;
  color: var(--muted);
  font-size: 2.625rem;
  line-height: 1;
  letter-spacing: -0.04em;
  font-weight: 200;
}

.intro p {
  margin: 0 0 2rem;
  font-size: 1.125rem;
  line-height: 1.45;
  font-weight: 400;
  letter-spacing: -0.025em;
}

.intro strong {
  font-weight: 600;
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 12.25rem;
  margin-top: 0.6rem;
  padding: 1rem 1.8rem;
  border-radius: 999px;
  background: var(--muted);
  color: #fff;
  font-size: 1.125rem;
  line-height: 1;
  font-weight: 600;
  transition: background-color 180ms ease;
}

.cta:hover,
.cta:focus-visible {
  background: #000;
}

.footer {
  border-top: 1px solid var(--line);
  padding: 1.8rem 6.5vw 2rem;
}

.footer a {
  font-size: 0.875rem;
  font-weight: 400;
}

@media (max-width: 1100px) {
  .hero {
    padding-top: 2.5rem;
  }

  .hero__top {
    flex-direction: column;
    gap: 3rem;
  }

  .manifesto {
    width: 100%;
    margin-top: 0;
    margin-right: 0;
  }

  .manifesto__line {
    font-size: clamp(4rem, 7vw, 5rem);
  }

  .intro {
    margin-top: 4.5rem;
  }

  .content-page__body {
    margin-top: 4.5rem;
  }
}

@media (max-width: 720px) {
  .hero {
    padding: 2rem 1.4rem 0;
  }

  .brand img {
    width: 8.75rem;
  }

  .manifesto {
    text-align: left;
  }

  .manifesto__line {
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 0.35rem 0.8rem;
    font-size: clamp(2.75rem, 12vw, 3.5rem);
  }

  .intro {
    width: 100%;
    margin-top: 3.5rem;
    padding-bottom: 3rem;
  }

  .content-page {
    padding: 2rem 1.4rem 3rem;
  }

  .content-page__header {
    flex-direction: column;
    gap: 2rem;
  }

  .content-page__body {
    width: 100%;
    margin-top: 2rem;
  }

  .intro p {
    font-size: 1rem;
    line-height: 1.55;
  }

  .content-page__body p {
    font-size: 1rem;
    line-height: 1.55;
  }

  .intro h1,
  .content-page__body h1 {
    font-size: 2rem;
  }

  .cta {
    min-width: 10.75rem;
    padding: 0.95rem 1.6rem;
    font-size: 1rem;
  }

  .footer {
    padding: 1.4rem 1.4rem 1.7rem;
  }

  .footer a {
    font-size: 0.875rem;
  }
}
