:root {
  --red: #cf321f;
  --black: #050505;
  --dark: #15151a;
  --gray: #F2F1F4;
  --white: #fff;
}

* {
  box-sizing: border-box;
}


.archivo-regular {
  font-family: "Archivo", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings:
    "wdth" 100;
}

.archivo-black-regular {
  font-family: "Archivo Black", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.anton-regular {
  font-family: "Anton", sans-serif;
  font-weight: 400;
  font-style: normal;
}



body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: "Archivo", Arial, Helvetica, sans-serif;
  line-height: 1.5;
}

.top-bar {
  background: var(--red);
  color: #111;
  text-align: center;
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: .04em;
  padding: .7rem;
  font-size: 1.5rem;
}

.hero {
  min-height: 520px;
  background:
    linear-gradient(90deg, rgba(0,0,0,.9), rgba(0,0,0,0)),
    url("images/hero-bg.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  padding: 4rem 6vw;
  position: relative;

}

.hero-badge {
    position: absolute;
    right: 6vw;
    top: 15rem;
    width: 340px;
    z-index: 5;
}

.hero-badge img {
    display: block;
    width: 100%;
    height: auto;
}

.hero h1 {
  font-family: "Anton", sans-serif;
  font-size: clamp(4rem, 12vw, 12rem);
  line-height: .82;
  margin: 0;
  text-transform: uppercase;
  font-weight: 400; /* Anton only has one weight */
}

.hero-title {
    font-family: "Anton", sans-serif;
    text-transform: uppercase;
    line-height: .82;
}

.against {
    position: relative;
    display: inline-block;
    color: #d63d20;
    z-index: 2;
}

.against::before {
    content: "";
    position: absolute;
    inset: -12px -30px;
    background: url(images/brush-stroke.svg) center/100% 100% no-repeat;
    z-index: -1;
}

.hero h1 span,
.price {
  color: var(--red);
}

.join {
  font-size: clamp(1.5rem, 4vw, 2rem);
  line-height: 1.2;
  margin-top: 0;
}

.date {
  text-transform: uppercase;
  font-weight: 900;
  font-size: 2rem;
}

.seek-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;

}

.seek-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;

}

.seek-item img {
    width: 48px;
    height: 48px;
    margin-top: .15rem;
    flex-shrink: 0;
}

.seek-item h4 {
    margin: 0;
    font-family: "Archivo Black", sans-serif;
    font-size: 1.25rem;
    color: white;
    text-transform: none;
}

.seek-item p {
    margin: .3rem 0 0;
    color: #cfcfcf;
    line-height: 1.4;
}

.seek-box {
    padding: 2rem;
}

.seek-box h3 {
  font-size: 1.7rem;
  margin-top: 0;
}

main section {
  padding: 5rem 6vw;
}

.section-grid {
  display: grid;
  grid-template-columns: 1.3fr .8fr;
  gap: 3rem;
}

h2 {
  font-size: 3.5rem;
  margin: 0;
}

h2,
h3 {
  font-family: "Archivo", sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .03em;
}

p {
  color: var(--gray);
}

.sponsorship p,
.vendors p,
.media p {
  margin: 0 0 2rem;;
}



.btn,
.top-bar,
.date,
form label {
  font-family: "Archivo", sans-serif;
  font-weight: 900;
}

.btn {
  display: inline-block;
  background: var(--red);
  color: var(--dark);
  text-transform: uppercase;
  font-weight: 900;
  text-decoration: none;
  padding: .9rem 1.4rem;
  border: 0;
  cursor: pointer;
  margin-top: 1rem;
  text-align: center;
}

.btn.secondary {
  background: #222;
}

.button-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.seek-box,
form,
.contact {
  background: var(--dark);
  padding: 1.5rem;
  border: 1px solid #2a2a2f;
}

.asset {
    background: var(--dark);
    border: 1px solid #333;
    padding: 2rem 2.25rem;
}

.asset img {
    width: 42px;
    height: 42px;
    display: block;
    margin-bottom: 2rem;
}

.asset h3 {
    margin: 0 0 1rem;
    font-size: 2rem;
    color: var(--red);
}

.asset p {
    margin: 0;
    color: #bcbcbc;
    line-height: 1.6;
    text-align: left !important;
}

.card {
  padding: 0;
  border: 1px solid #333333;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.vendors .card {
  padding: 1.5rem;
  background: #111111;
}

.card-content {
  padding: 1.75rem;
  background: var(--dark);
  display: flex;
  flex-direction: column;
  flex: 1;
}

.card-content .btn {
  width: 100%;
  margin-top: auto;
}

.card h3 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1.5rem;
}

.seek-box ul,
.card ul {
  padding-left: 1.1rem;
}

.sponsorship {
  background: #1c1c22;
}

.cards {
  display: grid;
  gap: 1.5rem;
}

.three {
  grid-template-columns: repeat(3, 1fr);
}

.two {
  grid-template-columns: repeat(2, 1fr);
}

.four {
  grid-template-columns: repeat(4, 1fr);
}

.card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.price {
  font-size: 2.5rem;
  font-weight: 1000;
  margin: 0;
}

.feature-list,
.bonus-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.feature-list li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 0.5rem;
    color: #f2f2f2;
    line-height: 1.5;
}

.feature-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: .2rem;
    width: 16px;
    height: 16px;
    background: url("images/icon-check.svg") center/contain no-repeat;
}

.bonus-box {
  margin: 1rem 0 2rem;
  padding: 1.75rem;
  border: 1px solid #5b4628;
  background: rgba(255,191,73,.05);
}


.bonus-box h4 {
    margin: 0 0 1rem;
    text-align: center;
    font-family: "Archivo Black", sans-serif;
    text-transform: uppercase;
    color: #d9b16b;
    font-size: .95rem;
}

.bonus-list li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: .9rem;
    color: #ddd;
    line-height: 1.45;
}

.bonus-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: .15rem;
    width: 16px;
    height: 16px;
    background: url("images/icon-star.svg") center/contain no-repeat;
}

.why {
    background: var(--red);
    padding: 3rem;
    margin-top: 3rem;
}

.why h2 {
    color: white;
    margin-bottom: .5rem;
    font-size: 2rem;
}

.why-intro {
    color: white;
    font-size: 1rem;
    max-width: 1200px;
    margin-bottom: 2.5rem;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.why-card {
    background: #0f0f13;
    border: 1px solid #34343c;
    padding: 2rem;
    transition: .2s;
}

.why-card img {
    width: 56px;
    height: 56px;
    margin-bottom: 1.5rem;
}

.why-card h3 {
    color: white;
    font-size: 1rem;
    margin: 0 0 .75rem;
    text-transform: none;
}

.why-card p {
    color: #cfcfcf;
    line-height: 1.6;
    margin: 0;
}


.vendors {
  background:
    linear-gradient(rgba(0,0,0,.9), rgba(0,0,0,.4)),
    url("images/vendor-bg.jpg") center/cover no-repeat;
}

.nonprofit {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.nonprofit .card-content {
  max-width: 600px;
  width: 50%;
  background: none;
}

.nonprofit .cta {
  display: flex;
  align-self: center;
  justify-content: center;
  width: 50%;
}

.nonprofit .card-content p {
  margin: 0;
}


.media h2,
.media p {
  text-align: center;
}


form label {
  display: block;
  text-transform: uppercase;
  font-size: .75rem;
  font-weight: 900;
  margin-bottom: 1rem;
}

input,
select,
textarea {
  width: 100%;
  margin-top: .35rem;
  background: #202024;
  border: 1px solid #333;
  color: white;
  padding: .9rem;
}

textarea {
  min-height: 120px;
}

.contact h2 {
  margin-top: 3rem;
  font-size: clamp(2rem, 4vw, 3.5rem);
}

.next {
  background: #000;
}

.next > h2 {
  margin-bottom: .5rem;
}

.next-intro {
  margin: 0 0 2rem;
  color: var(--white);
  font-size: 1.1rem;
}

.next-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 4rem;
  align-items: start;
}

.next-form,
.contact-card {
  background: #15151a;
  border: 1px solid #333;
  padding: 2.5rem;
}

.next-form label {
  display: block;
  margin-bottom: 1.3rem;
  font-size: .8rem;
  text-transform: uppercase;
  font-family: "Archivo Black", sans-serif;
  color: white;
}

.next-form label span {
  color: white;
}

.next-form small {
  color: #8f8f8f;
  font-family: "Archivo", sans-serif;
  text-transform: none;
  font-size: .8rem;
  margin-left: .25rem;
}

.next-form input,
.next-form select,
.next-form textarea {
  width: 100%;
  margin-top: .5rem;
  background: #1d1d20;
  border: 1px solid #333;
  color: white;
  padding: 1rem;
  font-family: "Archivo", sans-serif;
}

.next-form input::placeholder,
.next-form textarea::placeholder {
  color: #666;
}

.next-form textarea {
  min-height: 130px;
}

.next-form .btn {
  width: 100%;
  margin-top: .5rem;
  color: white;
}

.terms {
  display: flex !important;
  align-items: center;
  gap: .6rem;
  margin-top: 1.5rem;
  margin-bottom: 0 !important;
  font-family: "Archivo", sans-serif !important;
  font-size: .8rem !important;
  text-transform: none !important;
  color: #aaa !important;
}

.terms input {
  width: auto;
  margin: 0;
}

.next-side {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.contact-card {
  min-height: 230px;
}

.eyebrow {
  color: var(--red);
  text-transform: uppercase;
  font-family: "Archivo Black", sans-serif;
  margin-bottom: .5rem;
}

.contact-card h3 {
  font-size: 2rem;
  margin: 0 0 .5rem;
}

.contact-line {
  color: white;
  margin: .75rem 0;
}

.movement-line {
  font-size: 3rem;
  line-height: .95;
  margin: 0;
}

.social-block h3 {
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
}

.social-links {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.social-links a {
  color: white;
  text-decoration: none;
  text-transform: uppercase;
  font-family: "Archivo Black", sans-serif;
}

.social-block p {
  color: white;
  text-transform: uppercase;
  font-family: "Archivo Black", sans-serif;
}

.contact-card h3 {
    margin: 0;
}

.contact-card p {
    margin-top: .5rem;
}

.contact-item:first-of-type {
    margin-top: 2.25rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.contact-item img {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
}

.contact-item a {
    color: white;
    text-decoration: none;
    font-size: 1.4rem;
    font-family: "Archivo", sans-serif;
    transition: color .2s;
}

.contact-item a:hover {
    color: var(--red);
}

footer {
    background: var(--red);
    padding: 2rem;
    text-align: center;
}

footer p {
    margin: 0;
    color: rgba(0,0,0,.75);
    font-family: "Archivo Black", sans-serif;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: .02em;
}

@media (max-width: 850px) {
  .section-grid,
  .three,
  .two,
  .four {
    grid-template-columns: 1fr;
  }

  .button-row {
    flex-direction: column;
  }

  .button-row .btn {
    width: 100%;
    margin-top: 0;
  }

 .top-bar {
    font-size: 1rem;
    line-height: 1.25;
    padding: 1.25rem 1.5rem;
  }

  .hero {
    min-height: 620px;
    align-items: flex-start;
    padding: 5rem 6vw 3rem;
    background-position: center top;
  }

   .hero-badge {
        display: none;
    }

  .hero h1 {
    font-size: clamp(5rem, 25vw, 7rem);
  }

  .date {
    font-size: clamp(2rem, 9vw, 3.5rem);
    line-height: 1.25;
    margin-top: 4rem;
  }

  .against::before {
    inset: -8px -18px;
  }

  h2,
  .media h2 {
    font-size: 2.5rem;
    line-height: .95;
  }

  .sponsorship h2,
  .vendors h2 {
    font-size: 2.5rem;
    line-height: .95;
  }

  .media h2 {
    text-align: center;
  }

  .sponsorship p,
  .media p {
    font-size: 1rem;
    line-height: 1.45;
  }

  .vendors p {
    margin: 0;
  }

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

  .why {
    padding: 3rem 1.5rem;
  }

  .why-card {
    padding: 2rem;
  }

  .nonprofit {
    flex-direction: column;
    align-items: stretch;
    gap: 1.5rem;
  }

  .nonprofit .card-content {
    width: 100%;
    max-width: none;
    padding: 0;
  }

  .nonprofit .cta {
    width: 100%;
    justify-content: stretch;
  }

  .nonprofit .cta .btn {
    width: 100%;
    margin-top: 0;
  }

   .next-grid {
     grid-template-columns: minmax(0, 1fr);
  gap: 2rem;
  }

  .next-form,
.contact-card {
  width: 100%;
  max-width: 100%;
  padding: 1.5rem;
}

.next-form input,
.next-form select,
.next-form textarea {
  max-width: 100%;
}
 .website-url {
    font-size: 1.1rem !important;
    line-height: 1.1;
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  .movement-line {
    font-size: 2.5rem;

  }
}

/* Downloadable flyers */
.flyers {
  background: #111;
  border-top: 1px solid #2a2a2f;
}

.flyers-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.flyers-heading h2 {
  margin-bottom: .5rem;
}

.flyers-heading p:not(.eyebrow) {
  margin: 0;
}

.flyer-pack-btn {
  flex-shrink: 0;
  margin-top: 0;
}

.flyer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.flyer-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  background: var(--dark);
  border: 1px solid #333;
}

.flyer-preview {
  display: block;
  overflow: hidden;
  background: #080808;
  aspect-ratio: 4 / 3;
}

.flyer-preview img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  transition: transform .2s ease;
}

.flyer-preview:hover img {
  transform: scale(1.02);
}

.flyer-card-content {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.5rem;
}

.flyer-card h3 {
  margin: 0 0 .65rem;
  font-size: 1.35rem;
}

.flyer-card p {
  margin: 0 0 1.5rem;
  color: #bcbcbc;
}

.flyer-card .btn {
  width: 100%;
  margin-top: auto;
}


@media (max-width: 850px) {
  .flyers-heading {
    align-items: stretch;
    flex-direction: column;
  }

  .flyer-pack-btn {
    width: 100%;
  }

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