:root {
  --red: #e81924;
  --red-dark: #b90f19;
  --yellow: #f2bb22;
  --blue: #1b68b3;
  --green: #009c4a;
  --cream: #fff9e9;
  --ink: #20140f;
  --white: #ffffff;
  --font-display: "Anton", "Arial Narrow", sans-serif;
  --font-body: "DM Sans", Arial, sans-serif;
  --container: 75rem;
  --gutter: clamp(1.25rem, 5vw, 4rem);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

.container {
  width: min(100%, var(--container));
  margin-inline: auto;
  padding-inline: var(--gutter);
}

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

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

.site-header {
  position: relative;
  z-index: 1;
  padding-block: 0.85rem;
  background: var(--white);
}

.site-header__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.site-header__brand {
  display: block;
  width: clamp(11rem, 18vw, 15rem);
  text-decoration: none;
}

.site-header__brand img {
  width: 100%;
  height: auto;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  min-height: 2.75rem;
  padding: 0.7rem 1rem;
  border: 1px solid var(--red);
  border-radius: 999px;
  background: transparent;
  color: var(--red);
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  transition: background-color 180ms ease, color 180ms ease;
}

.header-cta:hover,
.header-cta:focus-visible {
  background: var(--red);
  color: var(--white);
  outline: none;
}

.hero {
  background: var(--red);
  line-height: 0;
}

.hero picture,
.hero img {
  width: 100%;
}

.hero img {
  height: auto;
}

.manifesto {
  position: relative;
  overflow: hidden;
  padding: clamp(5rem, 10vw, 9rem) 0 clamp(7rem, 13vw, 12rem);
  background:
    radial-gradient(circle at 93% 18%, rgb(242 187 34 / 20%) 0 5rem, transparent 5.1rem),
    var(--cream);
}

.manifesto::before {
  content: "";
  position: absolute;
  top: 0;
  right: 8%;
  width: clamp(4rem, 8vw, 7rem);
  height: clamp(4rem, 8vw, 7rem);
  background: var(--yellow);
  clip-path: polygon(50% 0%, 61% 34%, 98% 35%, 68% 56%, 79% 91%, 50% 70%, 21% 91%, 32% 56%, 2% 35%, 39% 34%);
  transform: translateY(-35%) rotate(10deg);
}

.manifesto__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(18rem, 0.75fr);
  gap: clamp(3rem, 8vw, 8rem);
  align-items: start;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 1.25rem;
  color: var(--red);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.kicker::before {
  content: "";
  width: 2rem;
  height: 0.28rem;
  background: currentColor;
}

.manifesto h1,
.connect h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 0.005em;
  line-height: 1.08;
  text-transform: uppercase;
}

.manifesto h1 {
  max-width: 13ch;
  color: var(--red);
  font-size: clamp(3.2rem, 7vw, 6.8rem);
}

.manifesto__copy {
  padding-top: clamp(0rem, 5vw, 4rem);
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
}

.manifesto__copy p {
  margin: 0;
}

.manifesto__copy p + p {
  margin-top: 1.5rem;
}

.manifesto__lead {
  font-size: clamp(1.25rem, 2vw, 1.6rem);
  font-weight: 700;
  line-height: 1.4;
}

.manifesto__word {
  position: absolute;
  right: -0.03em;
  bottom: -0.25em;
  color: rgb(232 25 36 / 7%);
  font-family: var(--font-display);
  font-size: clamp(6rem, 18vw, 18rem);
  line-height: 1;
  white-space: nowrap;
}

.connect {
  position: relative;
  overflow: hidden;
  padding: clamp(5rem, 9vw, 8rem) 0;
  background: var(--red);
  color: var(--white);
}

.connect::after {
  content: "";
  position: absolute;
  right: -9rem;
  bottom: -12rem;
  width: 26rem;
  aspect-ratio: 1;
  border: 5rem solid rgb(242 187 34 / 95%);
  border-radius: 50%;
}

.connect__content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(17rem, 0.65fr) minmax(0, 1.35fr);
  gap: clamp(3rem, 8vw, 8rem);
  align-items: start;
}

.kicker--light {
  color: var(--yellow);
}

.connect h2 {
  max-width: 11ch;
  font-size: clamp(2.8rem, 5.8vw, 5.6rem);
}

.connect__intro {
  position: sticky;
  top: 2rem;
}

.connect__intro p {
  max-width: 32rem;
  margin: 1.75rem 0 0;
  color: rgb(255 255 255 / 82%);
  font-size: 1.05rem;
}

.linktree-link {
  display: inline-flex;
  gap: 0.65rem;
  align-items: center;
  margin-top: 1.75rem;
  color: var(--yellow);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-underline-offset: 0.35rem;
  text-transform: uppercase;
}

.social-feeds {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
  align-items: start;
}

.feed-card {
  min-width: 0;
  overflow: hidden;
  border-radius: 1rem;
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 1.5rem 4rem rgb(89 0 6 / 20%);
}

.feed-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.15rem;
  border-bottom: 1px solid #ece7df;
}

.feed-card__header div {
  display: grid;
  line-height: 1.35;
}

.feed-card__header span {
  color: var(--red);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.feed-card__header strong {
  font-size: 0.9rem;
}

.feed-card__header a {
  display: grid;
  width: 2.25rem;
  aspect-ratio: 1;
  place-items: center;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  font-size: 1.15rem;
  text-decoration: none;
}

.feed-card__body {
  display: grid;
  min-height: 38.75rem;
  place-items: start center;
  overflow: hidden;
  background: var(--white);
}

.feed-card__body--instagram {
  padding: 0.75rem;
}

.instagram-media {
  width: 100% !important;
  min-width: 0 !important;
  margin: 0 !important;
}

.facebook-feed {
  display: block;
  width: 100%;
  max-width: 31.25rem;
  border: 0;
}

.site-footer {
  padding: 2.5rem 0;
  background: var(--ink);
  color: var(--white);
}

.site-footer__content {
  display: flex;
  gap: 2rem;
  align-items: center;
  justify-content: space-between;
}

.site-footer img {
  width: min(15rem, 42vw);
  height: auto;
}

.legal-text {
  max-width: 48rem;
  margin: 0;
  color: rgb(255 255 255 / 70%);
  font-size: 0.7rem;
  line-height: 1.6;
  text-align: right;
  text-transform: uppercase;
}

.legal-text span {
  margin-inline: 0.5rem;
}

@media (max-width: 48rem) {
  .manifesto {
    padding-block: 4.5rem 7rem;
  }

  .manifesto__grid,
  .connect__content {
    grid-template-columns: 1fr;
  }

  .manifesto__grid,
  .connect__content {
    gap: 2.5rem;
  }

  .manifesto__copy {
    max-width: 36rem;
    padding-top: 0;
  }

  .connect::after {
    right: -12rem;
    bottom: -15rem;
  }

  .connect__intro {
    position: static;
  }

  .social-feeds {
    grid-template-columns: 1fr;
  }

  .feed-card__body {
    min-height: 0;
  }

  .site-footer__content {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-footer img {
    width: 13rem;
  }

  .legal-text {
    text-align: left;
  }

  .legal-text span {
    display: block;
    height: 0;
    overflow: hidden;
  }
}

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

  .header-cta {
    transition: none;
  }
}
