* {
  box-sizing: border-box;
}

:root {
  --black: #050505;
  --black-2: #0e0e0e;
  --paper: #f2eee8;
  --paper-2: #f2efea;
  --white: #ffffff;
  --orange: #c44a1a;
  --orange-deep: #c84617;
  --grey: #99a1af;
  --grey-2: #d1d5dc;
  --line-light: rgba(255, 255, 255, 0.08);
  --line-dark: rgba(5, 5, 5, 0.1);
  --gutter: clamp(24px, 4.45vw, 64px);
  --site-width: 1440px;
  --content: 1312px;
}

html {
  background: #000000;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #000000;
  color: var(--paper);
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
}

.site-header,
main,
.site-footer {
  width: min(100%, var(--site-width));
  margin-inline: auto;
}

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

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

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

h1,
h2,
h3,
p {
  margin-top: 0;
}

button,
.button,
.nav-links a {
  font-family: "Inter", Arial, Helvetica, sans-serif;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: minmax(136px, 205px) 1fr auto;
  align-items: center;
  gap: clamp(18px, 4vw, 56px);
  min-height: 48px;
  padding: 10px var(--gutter);
  background: #000000;
}

.brand-mark img {
  width: min(205px, 100%);
}

.nav-links,
.header-actions,
.button-row {
  display: flex;
  align-items: center;
}

.nav-links {
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}

.nav-links a,
.button {
  min-height: 35px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 11px 22px;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 400;
  line-height: 12px;
  letter-spacing: 0;
  text-transform: uppercase;
  white-space: nowrap;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

.nav-links a {
  background: var(--white);
  color: var(--black-2);
}

.nav-links a:hover,
.button:hover,
.icon-action:hover {
  transform: translateY(-1px);
}

.header-actions {
  justify-content: flex-end;
  gap: 14px;
}

.icon-action {
  position: relative;
  width: 18px;
  height: 18px;
  color: var(--white);
}

.icon-action svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.icon-action span {
  position: absolute;
  top: -3px;
  right: -4px;
  width: 9px;
  height: 9px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--orange-deep);
  color: var(--white);
  font-size: 5px;
  font-weight: 900;
  line-height: 1;
}

.mobile-menu {
  display: none;
}

.button-orange {
  background: var(--orange);
  color: var(--white);
}

.button-light {
  background: var(--white);
  color: var(--black-2);
}

.button-dark {
  background: #000000;
  color: var(--white);
}

.button-outline {
  border: 1px solid var(--white);
  color: var(--white);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.mobile-copy {
  display: none;
}

main,
.site-footer {
  animation: page-smart-enter 700ms ease-out both;
}

body.is-page-leaving main,
body.is-page-leaving .site-footer {
  pointer-events: none;
  animation: page-smart-exit 700ms ease-out both;
}

@keyframes page-smart-enter {
  from {
    opacity: 0;
    transform: translateY(28px) scale(0.992);
    filter: blur(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

@keyframes page-smart-exit {
  from {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }

  to {
    opacity: 0;
    transform: translateY(-18px) scale(1.006);
    filter: blur(6px);
  }
}

.hero {
  position: relative;
  min-height: 721px;
  display: grid;
  place-items: center;
  padding: 0 var(--gutter);
  overflow: hidden;
  background: url("../images/figma-banner.png") center / cover no-repeat;
}

.hero-copy {
  width: min(932px, 100%);
  text-align: center;
}

.hero-copy .section-kicker,
.hero-copy h1 {
  opacity: 0;
  transform: translateY(32px);
  animation: hero-rise 780ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero-copy .section-kicker {
  margin-bottom: 24px;
  animation-delay: 120ms;
}

.hero-copy h1 {
  margin-bottom: 0;
  color: var(--white);
  font-size: clamp(2.35rem, 3.34vw, 3rem);
  font-weight: 900;
  line-height: 1.208;
  text-transform: uppercase;
  animation-delay: 260ms;
}

@keyframes hero-rise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

p.section-kicker,
.section-kicker {
  margin-bottom: 24px;
  color: #c44a1a !important;
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 20px;
  text-transform: uppercase;
  overflow-wrap: break-word;
}

.section-dark {
  background: #000000;
  color: var(--paper);
}

.section-light {
  background: var(--paper-2);
  color: var(--black);
}

.section-orange {
  background: var(--orange-deep);
  color: var(--paper);
}

.section-image {
  position: relative;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.98), rgba(5, 5, 5, 0.9) 45%, rgba(5, 5, 5, 0.66)),
    url("../images/figma-story-bg.png") center / cover no-repeat;
}

.section-background-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
}

.about,
.focus,
.offers,
.crews,
.story,
.events,
.gallery,
.about-hero,
.about-intro,
.about-mission,
.about-story,
.site-footer {
  padding: 96px var(--gutter);
}

.about {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(36px, 6vw, 86px);
  padding-top: 64px;
  padding-bottom: 96px;
}

.section-heading {
  max-width: 970px;
}

.section-heading h2,
.crew-copy h2,
.story-copy h2 {
  margin-bottom: 0;
  font-size: clamp(1.75rem, 2.5vw, 2.25rem);
  font-weight: 800;
  line-height: 1.333;
  text-transform: uppercase;
}

.about .section-heading {
  display: grid;
  align-content: start;
  gap: 24px;
}

.about .button {
  width: max-content;
}

.about-hero {
  min-height: 400px;
  padding: 0;
  background: url("../images/figma-about-hero.png") center / cover no-repeat;
}

.about-intro {
  min-height: 538px;
  display: grid;
  grid-template-columns: minmax(0, 607px) minmax(0, 607px);
  gap: 86px;
  align-items: start;
  padding-top: 96px;
  padding-bottom: 96px;
  color: var(--paper);
}

.about-intro .section-kicker,
.about-mission .section-kicker,
.about-story .section-kicker {
  margin-bottom: 36px;
  color: #c44a1a;
  font-size: 12px;
  font-weight: 700;
  line-height: 20px;
}

.about-intro .section-heading h2 {
  color: var(--white);
  font-size: clamp(2rem, 2.5vw, 2.25rem);
  font-weight: 900;
  line-height: 1.33;
}

.about-intro .body-copy {
  color: var(--grey-2);
}

.about-intro .body-copy p {
  margin-bottom: 23px;
}

.about-mission {
  min-height: 490px;
  display: grid;
  align-items: center;
  background: var(--white);
  color: var(--black);
}

.about-mission .section-heading {
  max-width: 1300px;
}

.about-mission .section-heading h2 {
  margin-bottom: 88px;
  color: var(--black);
  font-size: clamp(2rem, 2.5vw, 2.25rem);
  font-weight: 900;
  line-height: 1.33;
  text-transform: uppercase;
}

.about-mission .section-heading p:last-child {
  margin-bottom: 0;
  color: var(--black);
  font-size: clamp(1.55rem, 2.08vw, 1.875rem);
  font-weight: 600;
  line-height: 1.33;
}

.about-mission strong {
  color: var(--orange);
  font-weight: 600;
}

.about-story {
  position: relative;
  min-height: 966px;
  padding-top: 96px;
  padding-bottom: 96px;
  overflow: hidden;
  background: #000000;
}

.about-story::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.94), rgba(0, 0, 0, 0.78));
  pointer-events: none;
}

.about-story-background {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
}

.about-story-heading {
  position: relative;
  z-index: 2;
  max-width: 970px;
}

.about-story-heading h2 {
  margin-bottom: 0;
  color: var(--white);
  font-size: clamp(2rem, 2.5vw, 2.25rem);
  font-weight: 900;
  line-height: 1.33;
  text-transform: uppercase;
}

.about-story-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 639px) minmax(0, 619px);
  gap: 53px;
  align-items: start;
  max-width: 1311px;
  margin-top: 86px;
}

.about-story-media {
  width: 100%;
  height: 500px;
  display: block;
  object-fit: cover;
}

.about-story-copy {
  padding-top: 7px;
}

.about-story-copy p {
  margin-bottom: 24px;
  color: var(--grey-2);
  font-size: 16px;
  line-height: 1.86;
}

.crews-page-hero {
  min-height: 400px;
  display: grid;
  align-items: center;
  padding: 0 var(--gutter);
  background: url("../images/figma-crews-hero.png") center / cover no-repeat;
}

.crews-page-hero h1 {
  margin: 0;
  color: var(--paper);
  font-size: 36px;
  font-weight: 800;
  line-height: 48px;
  text-transform: uppercase;
}

.crew-search {
  padding: 96px var(--gutter);
  background: var(--paper-2);
  color: var(--black-2);
}

.crew-search-form {
  display: grid;
  grid-template-columns: 298px repeat(4, 200px) 84px;
  gap: 24px;
  align-items: end;
  max-width: var(--content);
  margin-inline: auto;
}

.crew-field {
  display: grid;
  gap: 14px;
}

.crew-field label {
  font-size: 12px;
  font-weight: 700;
  line-height: 18px;
  text-transform: uppercase;
}

.crew-control {
  min-height: 43px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 18px;
  border-radius: 3px;
  background: var(--white);
  color: var(--black-2);
  font-size: 16px;
  line-height: 20px;
}

.crew-control svg {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  fill: none;
  stroke: #99a1af;
  stroke-width: 2;
}

.crew-control span {
  color: #99a1af;
}

.crew-select::after {
  content: "";
  width: 9px;
  height: 9px;
  margin-left: auto;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
}

.crew-listings {
  display: grid;
  grid-template-columns: 252px minmax(0, 996px);
  gap: 48px;
  padding: 96px var(--gutter);
  background: var(--white);
  color: var(--black-2);
}

.crew-filters {
  display: grid;
  align-content: start;
  gap: 44px;
}

.crew-filter-group {
  padding-top: 0;
  border-top: 1px solid rgba(5, 5, 5, 0.45);
}

.crew-filter-group h2 {
  margin: -1px 0 24px;
  padding-top: 0;
  font-size: 14px;
  font-weight: 700;
  line-height: 18px;
  text-transform: uppercase;
}

.crew-filter-option {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  text-transform: uppercase;
}

.crew-filter-option::before {
  content: "";
  width: 14px;
  height: 14px;
  border: 2px solid var(--black-2);
  background: transparent;
}

.crew-filter-option.is-active::before {
  border-color: var(--orange);
  background: var(--orange);
}

.crew-sort-mobile {
  display: none;
}

.crew-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 316px));
  gap: 31px 24px;
}

.crew-card {
  min-height: 476px;
  display: flex;
  flex-direction: column;
  background: #000000;
  color: var(--white);
}

.crew-card-image {
  position: relative;
  height: 223px;
  overflow: hidden;
}

.crew-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.crew-tag {
  position: absolute;
  left: 24px;
  bottom: 20px;
  padding: 9px 13px;
  background: var(--orange);
  color: var(--paper);
  font-family: "Inter", Arial, Helvetica, sans-serif;
  font-size: 10px;
  font-weight: 700;
  line-height: 15px;
  text-transform: uppercase;
}

.crew-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 27px 24px 24px;
}

.crew-card h2 {
  margin-bottom: 12px;
  color: var(--paper);
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
  text-transform: uppercase;
}

.crew-card p {
  margin-bottom: 29px;
  color: var(--white);
  font-size: 14px;
  line-height: 1.64;
}

.crew-card-meta {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: auto;
  margin-bottom: 20px;
  color: rgba(242, 238, 232, 0.4);
  font-size: 10px;
  font-weight: 700;
  line-height: 15px;
  text-transform: uppercase;
}

.crew-card .button {
  width: 100%;
}

.crew-network {
  min-height: 729px;
  display: grid;
  grid-template-columns: minmax(0, 493px) minmax(0, 648px);
  gap: clamp(64px, 10vw, 155px);
  align-items: center;
  padding: 96px var(--gutter);
  background: #050505;
  color: var(--white);
}

.crew-network-copy .section-kicker {
  margin-bottom: 28px;
  color: var(--orange) !important;
  font-size: 12px;
  line-height: 20px;
}

.crew-network-copy h2 {
  margin-bottom: 38px;
  color: var(--white);
  font-size: 36px;
  font-weight: 900;
  line-height: 48px;
  text-transform: uppercase;
}

.crew-network-copy p {
  margin-bottom: 38px;
  color: var(--grey-2);
  font-family: "Inter", Arial, Helvetica, sans-serif;
  font-size: 21.6px;
  line-height: 30px;
}

.crew-network-copy .button {
  min-width: 207px;
}

.crew-testimonial {
  position: relative;
  min-height: 634px;
}

.crew-testimonial::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 648px;
  max-width: 100%;
  height: 499px;
  background: url("../images/figma-crews-cta.png") center / cover no-repeat;
}

.crew-testimonial-card {
  position: absolute;
  left: -20px;
  bottom: 110px;
  width: 400px;
  min-height: 274px;
  padding: 50px 48px 42px;
  background: var(--paper);
  color: var(--black-2);
}

.crew-testimonial-card h3 {
  margin-bottom: 24px;
  font-size: 30px;
  font-weight: 700;
  line-height: 36px;
  text-transform: uppercase;
}

.crew-testimonial-card blockquote {
  margin: 0 0 20px;
  color: rgba(14, 14, 14, 0.58);
  font-size: 14px;
  font-style: italic;
  font-weight: 500;
  line-height: 20px;
}

.crew-testimonial-card cite {
  color: var(--black-2);
  font-family: "Inter", Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: 16px;
  text-transform: uppercase;
}

.volunteer-hero {
  min-height: 400px;
  background: url("../images/figma-volunteer-hero.png") center / cover no-repeat;
}

.volunteer-intro {
  min-height: 431px;
  display: grid;
  grid-template-columns: minmax(0, 607px) minmax(0, 607px);
  gap: 80px;
  padding: 96px var(--gutter);
  background: #000000;
  color: var(--white);
}

.volunteer-intro .section-kicker,
.volunteer-opportunity .section-kicker,
.volunteer-rewards .section-kicker,
.volunteer-cta .section-kicker,
.volunteer-gallery .section-kicker {
  margin-bottom: 24px;
  color: var(--orange) !important;
  font-size: 12px;
  font-weight: 700;
  line-height: 20px;
  text-transform: uppercase;
}

.volunteer-intro h2 {
  margin: 0;
  color: var(--white);
  font-size: 60px;
  font-weight: 800;
  line-height: 60px;
  text-transform: uppercase;
}

.volunteer-intro h2 .desktop-copy {
  display: inline;
}

.volunteer-intro > p {
  margin: 0;
  color: var(--grey-2);
  font-size: 16px;
  font-weight: 400;
  line-height: 29.8px;
}

.volunteer-opportunity {
  min-height: 715px;
  display: grid;
  grid-template-columns: minmax(0, 382px) minmax(0, 398px) minmax(0, 398px);
  gap: 56px;
  align-items: start;
  padding: 96px var(--gutter);
  background: var(--white);
  color: var(--black-2);
}

.volunteer-opportunity-copy h2 {
  margin-bottom: 24px;
  color: var(--black-2);
  font-size: 48px;
  font-weight: 900;
  line-height: 50px;
  text-transform: uppercase;
}

.volunteer-opportunity-copy > p:not(.section-kicker) {
  margin-bottom: 32px;
  color: var(--black-2);
  font-size: 16px;
  line-height: 24px;
}

.volunteer-opportunity ul,
.volunteer-benefits-card ul,
.volunteer-tier-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.volunteer-opportunity-copy li {
  position: relative;
  min-height: 48px;
  display: flex;
  align-items: center;
  padding-left: 28px;
  border-top: 1px solid rgba(14, 14, 14, 0.16);
  color: var(--black-2);
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  text-transform: uppercase;
}

.volunteer-opportunity-copy li:last-child {
  border-bottom: 1px solid rgba(14, 14, 14, 0.16);
}

.volunteer-opportunity-copy li::before {
  content: "";
  position: absolute;
  left: 0;
  width: 12px;
  height: 12px;
  background: var(--orange);
}

.volunteer-benefits-card {
  min-height: 523px;
  display: flex;
  flex-direction: column;
  padding: 48px;
  background: #000000;
  color: var(--white);
}

.volunteer-benefits-card > p {
  margin-bottom: 42px;
  color: var(--orange);
  font-family: "Inter", Arial, Helvetica, sans-serif;
  font-size: 10px;
  font-weight: 700;
  line-height: 14px;
  text-transform: uppercase;
}

.volunteer-benefits-card h3 {
  margin-bottom: 36px;
  color: var(--white);
  font-family: "Inter", Arial, Helvetica, sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 38px;
}

.volunteer-benefits-card li {
  margin-bottom: 19px;
  color: var(--grey-2);
  font-family: "Inter", Arial, Helvetica, sans-serif;
  font-size: 14px;
  line-height: 20px;
}

.volunteer-benefits-card li::before {
  content: "+ ";
  color: var(--orange);
  font-weight: 700;
}

.volunteer-benefits-card .button {
  width: 126px;
  margin-top: auto;
}

.volunteer-opportunity-image {
  width: 100%;
  height: 523px;
  object-fit: cover;
}

.volunteer-rewards {
  position: relative;
  min-height: 781px;
  display: block;
  padding: 96px var(--gutter) 86px;
  overflow: hidden;
  background: #000000;
  color: var(--white);
}

.volunteer-rewards::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.22) 48%, rgba(0, 0, 0, 0.38));
}

.volunteer-rewards-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1);
  opacity: 0.45;
}

.volunteer-rewards > :not(.volunteer-rewards-video) {
  position: relative;
  z-index: 2;
}

.volunteer-rewards-copy h2 {
  max-width: 878px;
  margin: 0 0 82px;
  color: var(--white);
  font-size: 36px;
  font-weight: 900;
  line-height: 48px;
  text-transform: uppercase;
}

.volunteer-tier-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.volunteer-tier-card {
  min-height: 363px;
  padding: 34px 32px 32px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(0, 0, 0, 0.28);
  color: var(--white);
}

.volunteer-tier-card > span {
  width: 83px;
  height: 83px;
  display: block;
  margin-bottom: 14px;
  color: var(--orange);
}

.volunteer-tier-card svg {
  width: 83px;
  height: 83px;
  fill: currentColor;
}

.volunteer-tier-silver > span {
  color: #d1d5dc;
}

.volunteer-tier-gold > span {
  color: #f2b84b;
}

.volunteer-tier-card h3 {
  position: relative;
  margin-bottom: 35px;
  color: var(--white);
  font-family: "Inter", Arial, Helvetica, sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
  text-transform: uppercase;
}

.volunteer-tier-card h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -18px;
  width: 41px;
  height: 1px;
  background: var(--orange);
}

.volunteer-tier-card li {
  margin-bottom: 14px;
  color: var(--grey-2);
  font-family: "Inter", Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 20px;
}

.volunteer-tier-card li::before {
  content: "+ ";
  color: currentColor;
}

.volunteer-cta {
  min-height: 435px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 96px var(--gutter);
  background: #000000;
  color: var(--white);
  text-align: center;
}

.volunteer-cta .section-kicker {
  margin-bottom: 24px;
}

.volunteer-cta h2 {
  margin-bottom: 24px;
  color: var(--white);
  font-size: 36px;
  font-weight: 900;
  line-height: 48px;
  text-transform: uppercase;
}

.volunteer-cta p:not(.section-kicker) {
  margin-bottom: 38px;
  color: var(--grey-2);
  font-size: 20px;
  line-height: 30px;
}

.volunteer-gallery {
  min-height: 1680px;
  padding: 96px var(--gutter);
  background: #000000;
  color: var(--white);
}

.volunteer-gallery h2 {
  margin-bottom: 78px;
  color: var(--white);
  font-size: 36px;
  font-weight: 900;
  line-height: 48px;
  text-transform: uppercase;
}

.volunteer-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.volunteer-gallery-grid img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.volunteer-gallery-more {
  display: none;
}

.events-page-hero {
  min-height: 400px;
  background: url("../images/figma-events-hero.png") center / cover no-repeat;
}

.events-filter {
  min-height: 161px;
  padding: 45px var(--gutter);
  background: var(--paper-2);
  color: var(--black-2);
}

.events-filter-form {
  display: grid;
  grid-template-columns: minmax(0, 522px) repeat(3, minmax(0, 200px)) 82px;
  gap: 24px;
  align-items: end;
  max-width: 1300px;
  margin-inline: auto;
}

.events-filter-field {
  display: grid;
  gap: 8px;
}

.events-filter-field label {
  color: var(--black-2);
  font-family: "Inter", Arial, Helvetica, sans-serif;
  font-size: 10px;
  font-weight: 700;
  line-height: 18px;
  text-transform: uppercase;
}

.events-control {
  height: 45px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 20px;
  background: var(--white);
  color: #99a1af;
  font-family: "Inter", Arial, Helvetica, sans-serif;
  font-size: 14px;
  line-height: 16px;
}

.events-control svg {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  fill: none;
  stroke: #99a1af;
  stroke-width: 2;
}

.events-select::after {
  content: "";
  width: 8px;
  height: 8px;
  margin-left: auto;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
}

.events-filter .button {
  height: 45px;
  min-height: 45px;
  padding-inline: 22px;
}

.events-list {
  min-height: 1823px;
  padding: 0 var(--gutter) 96px;
  background: var(--paper-2);
  color: var(--black-2);
}

.events-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 34px;
  max-width: 1300px;
  margin-inline: auto;
}

.events-page-card {
  position: relative;
  min-height: 553px;
  background: var(--white);
  color: var(--black-2);
}

.events-page-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  filter: grayscale(1);
}

.events-page-card > span {
  position: absolute;
  top: 16px;
  left: 16px;
  min-height: 23px;
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  background: var(--orange);
  color: var(--white);
  font-family: "Inter", Arial, Helvetica, sans-serif;
  font-size: 10px;
  font-weight: 700;
  line-height: 15px;
  text-transform: uppercase;
}

.events-page-card > div {
  padding: 32px;
}

.events-page-card p {
  margin-bottom: 4px;
  color: var(--orange);
  font-family: "Inter", Arial, Helvetica, sans-serif;
  font-size: 10px;
  font-weight: 700;
  line-height: 18px;
  text-transform: uppercase;
}

.events-page-card h2 {
  margin-bottom: 16px;
  color: var(--black-2);
  font-family: "Inter", Arial, Helvetica, sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 30px;
}

.events-page-card dl {
  display: grid;
  grid-template-columns: 16px 1fr;
  gap: 8px 12px;
  margin: 0 0 24px;
  padding: 16px 0;
  border-block: 1px solid rgba(14, 14, 14, 0.1);
}

.events-page-card dt,
.events-page-card dd {
  margin: 0;
}

.events-page-card dt {
  color: var(--orange);
}

.events-page-card dt svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.events-page-card dd {
  color: rgba(14, 14, 14, 0.7);
  font-family: "Inter", Arial, Helvetica, sans-serif;
  font-size: 12px;
  line-height: 21px;
}

.events-page-card .button {
  width: 100%;
}

.events-organizers {
  min-height: 642px;
  display: grid;
  grid-template-columns: minmax(0, 596px) minmax(0, 638px);
  gap: 62px;
  align-items: center;
  padding: 96px var(--gutter);
  background: var(--orange-deep);
  color: var(--white);
}

.events-organizers .section-kicker {
  margin-bottom: 18px;
  color: var(--white) !important;
}

.events-organizers h2 {
  margin-bottom: 30px;
  color: var(--white);
  font-size: 36px;
  font-weight: 900;
  line-height: 48px;
  text-transform: uppercase;
}

.events-organizers p:not(.section-kicker) {
  max-width: 596px;
  margin-bottom: 38px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 16px;
  line-height: 30px;
}

.events-organizers img {
  width: 100%;
  height: 450px;
  object-fit: cover;
}

.contact-hero {
  min-height: 400px;
  background: url("../images/figma-contact-hero.png") center / cover no-repeat;
}

.contact-section {
  min-height: 859.5px;
  display: grid;
  grid-template-columns: minmax(0, 588px) minmax(0, 588px);
  gap: 120px;
  padding: 96px var(--gutter);
  background: var(--paper-2);
  color: var(--black-2);
}

.contact-form-column h2,
.contact-info-column > h2 {
  margin-bottom: 40px;
  color: var(--black-2);
  font-size: 36px;
  font-weight: 900;
  line-height: 48px;
  text-transform: uppercase;
}

.contact-form {
  display: grid;
  gap: 24px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--black-2);
  font-family: "Inter", Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 18px;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea,
.contact-select {
  width: 100%;
  border: 0;
  background: var(--white);
  color: var(--black-2);
  font-family: "Inter", Arial, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

.contact-form input,
.contact-select {
  height: 45px;
  display: flex;
  align-items: center;
  padding: 0 24px;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #b6bdc9;
  opacity: 1;
}

.contact-form textarea {
  height: 160px;
  resize: vertical;
  padding: 24px;
}

.contact-select {
  position: relative;
  appearance: none;
  text-transform: none;
  cursor: pointer;
  background:
    linear-gradient(45deg, transparent 50%, var(--black-2) 50%) calc(100% - 29px) 19px / 7px 7px no-repeat,
    linear-gradient(135deg, var(--black-2) 50%, transparent 50%) calc(100% - 24px) 19px / 7px 7px no-repeat,
    var(--white);
}

.contact-select::-ms-expand {
  display: none;
}

.contact-form .button {
  width: 148px;
  margin-top: 0;
}

.contact-methods {
  display: grid;
  gap: 24px;
  margin-bottom: 25px;
}

.contact-method {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  align-items: start;
}

.contact-method > span {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  background: var(--orange);
  color: var(--white);
}

.contact-method svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-method h3 {
  margin: 0 0 4px;
  color: var(--orange);
  font-family: "Inter", Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 18px;
  text-transform: uppercase;
}

.contact-method p {
  margin: 0;
  color: var(--black-2);
  font-family: "Inter", Arial, Helvetica, sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 27px;
}

.contact-method p + p {
  color: rgba(14, 14, 14, 0.5);
  font-size: 16px;
  font-weight: 400;
  line-height: 21px;
}

.contact-ecosystem {
  min-height: 290.5px;
  display: grid;
  align-content: start;
  padding: 40px;
  margin-bottom: 25px;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.72)),
    url("../images/figma-crews-cta.png") center / cover no-repeat;
  color: var(--white);
}

.contact-ecosystem .section-kicker {
  margin-bottom: 24px;
  color: var(--orange) !important;
  font-size: 10px;
}

.contact-ecosystem h3 {
  margin-bottom: 23px;
  color: var(--white);
  font-size: 24px;
  font-weight: 900;
  line-height: 36px;
  text-transform: uppercase;
}

.contact-ecosystem p:not(.section-kicker) {
  max-width: 508px;
  margin-bottom: 26px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 16px;
  line-height: 23px;
}

.contact-ecosystem .button {
  width: 92px;
  border-color: var(--orange);
}

.contact-follow h3 {
  margin-bottom: 16px;
  color: var(--black-2);
  font-family: "Inter", Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 18px;
  text-transform: uppercase;
}

.contact-social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.contact-social-links a {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(14, 14, 14, 0.14);
  color: var(--black-2);
}

.contact-social-links svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.contact-social-links a:nth-child(2) svg,
.contact-social-links a:nth-child(3) svg,
.contact-social-links a:nth-child(4) svg,
.contact-social-links a:nth-child(5) svg {
  fill: currentColor;
  stroke: none;
}

.faq-hero {
  min-height: 400px;
  background: url("../images/figma-faq-hero.png") center / cover no-repeat;
}

.faq-section {
  min-height: 1348px;
  padding: 96px var(--gutter);
  background: var(--white);
  color: var(--black-2);
}

.faq-list {
  max-width: 1312px;
  margin-inline: auto;
  display: grid;
  gap: 24px;
}

.faq-item {
  background: var(--paper-2);
  color: var(--black-2);
}

.faq-item summary {
  min-height: 55px;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 10px 23px;
  cursor: pointer;
  list-style: none;
  color: var(--black-2);
  font-size: 18px;
  font-weight: 700;
  line-height: 25px;
  text-transform: uppercase;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  width: 35px;
  height: 35px;
  flex: 0 0 35px;
  display: grid;
  place-items: center;
  margin-left: auto;
  border-radius: 999px;
  background: var(--orange);
  color: var(--white);
  font-family: "Inter", Arial, Helvetica, sans-serif;
  font-size: 27px;
  font-weight: 400;
  line-height: 1;
}

.faq-item[open] {
  background: transparent;
}

.faq-item[open] summary {
  background: #000000;
  color: var(--white);
}

.faq-item[open] summary::after {
  content: "-";
  padding-bottom: 3px;
}

.faq-item p {
  margin: 0;
  padding: 20px 23px 0;
  color: rgba(14, 14, 14, 0.8);
  font-size: 16px;
  line-height: 30px;
}

.body-copy,
.crew-copy > p,
.story-copy > p,
.events .section-heading > p {
  color: var(--grey-2);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.86;
}

.body-copy p {
  margin-bottom: 23px;
}

.body-copy p:last-child,
.crew-copy p:last-of-type,
.story-copy p:last-child {
  margin-bottom: 0;
}

.focus {
  position: relative;
  min-height: auto;
  padding-top: 80px;
  padding-bottom: 96px;
  overflow: hidden;
  background: #000000;
}

.focus::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(5, 5, 5, 0.98), rgba(5, 5, 5, 0.9) 45%, rgba(5, 5, 5, 0.66));
  pointer-events: none;
}

.focus .section-heading,
.scroll-cue,
.story-copy {
  position: relative;
  z-index: 2;
}

.focus-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 26px;
  max-width: var(--content);
  margin-top: 46px;
}

.focus-card {
  min-height: 380px;
  display: grid;
  align-content: start;
  gap: 18px;
  padding: 14px 14px 24px;
  background: var(--paper-2);
  color: var(--black-2);
}

.focus-card img {
  width: 100%;
  height: 176px;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.04);
}

.focus-card h3 {
  margin-bottom: 6px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
  text-transform: capitalize;
}

.focus-card p,
.offer-grid p {
  margin-bottom: 15px;
  font-size: 14px;
  line-height: 1.62;
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  max-width: var(--content);
  margin-top: 56px;
}

.offer-grid article {
  min-height: 248px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 24px;
  background: #000000;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.offer-icon {
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border: 1px solid rgba(255, 107, 53, 0.36);
  background: rgba(255, 107, 53, 0.1);
  color: var(--orange);
}

.offer-icon svg {
  width: 28px;
  height: 32px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.33333;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.offer-grid h3 {
  min-height: 56px;
  margin-bottom: 12px;
  color: var(--white);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
}

.offer-grid p {
  color: var(--grey);
}

.offer-grid a {
  margin-top: auto;
  display: inline-flex;
  min-height: 35px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 11px 22px;
  border-radius: 10px;
  background: var(--white);
  color: var(--black-2);
  font-family: "Inter", Arial, Helvetica, sans-serif;
  font-size: 12px;
  line-height: 12px;
  white-space: nowrap;
  text-transform: uppercase;
}

.offer-mobile-controls {
  display: none;
}

.crews {
  display: grid;
  grid-template-columns: minmax(280px, 624px) minmax(0, 616px);
  gap: clamp(40px, 5vw, 72px);
  align-items: start;
  max-width: calc(var(--content) + (var(--gutter) * 2));
  margin-inline: auto;
}

.crew-collage {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.crew-collage img {
  width: 100%;
  aspect-ratio: 300 / 256;
  object-fit: cover;
  filter: saturate(0.82) contrast(1.04);
}

.crew-collage img:nth-child(even) {
  transform: translateY(75px);
}

.crew-copy {
  padding-top: 4px;
}

.crew-copy h2 {
  margin-bottom: 32px;
}

.crew-copy > p {
  margin-bottom: 32px;
}

.crew-copy ul {
  display: grid;
  gap: 24px;
  margin: 0 0 40px;
  padding: 0;
  list-style: none;
}

.crew-copy li {
  position: relative;
  padding-left: 24px;
  color: var(--grey-2);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
}

.crew-copy li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  background: var(--orange);
}

.button-row {
  flex-wrap: wrap;
  gap: 12px;
}

.story {
  position: relative;
  min-height: 672px;
  display: grid;
  grid-template-columns: 180px minmax(0, 970px);
  gap: clamp(40px, 12vw, 183px);
  align-items: end;
  overflow: hidden;
  background: #000000;
}

.story::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(5, 5, 5, 0.96), rgba(5, 5, 5, 0.88) 48%, rgba(5, 5, 5, 0.72));
  pointer-events: none;
}

.scroll-cue {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-family: "Inter", Arial, Helvetica, sans-serif;
  font-size: 12px;
  line-height: 1;
  text-transform: uppercase;
}

.story-copy h2 {
  margin-bottom: 24px;
}

.events .section-kicker {
  color: #c44a1a;
}

.events .section-heading h2 {
  color: var(--black);
  font-weight: 900;
}

.events .section-heading > p {
  margin-top: 24px;
  color: rgba(0, 0, 0, 0.78);
}

.event-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 34px;
  max-width: var(--content);
  margin-top: 56px;
}

.event-card {
  position: relative;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(5, 5, 5, 0.05);
  color: var(--black);
}

.event-card img {
  width: 100%;
  height: 244px;
  object-fit: cover;
  filter: saturate(0.45) contrast(1.07);
}

.event-card > span {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 4px 12px;
  background: var(--orange);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  line-height: 1.5;
  text-transform: uppercase;
}

.event-card > div {
  padding: 26px;
}

.event-card p {
  margin-bottom: 4px;
  color: var(--orange);
  font-family: "Inter", Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.5;
  text-transform: uppercase;
}

.event-card h3 {
  margin-bottom: 16px;
  font-family: "Inter", Arial, Helvetica, sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.25;
}

.event-card dl {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px 12px;
  margin: 0 0 24px;
  padding: 16px 0;
  border-block: 1px solid var(--line-dark);
}

.event-card dt {
  color: var(--orange);
  font-size: 14px;
  font-weight: 700;
}

.event-card dd {
  margin: 0;
  color: rgba(5, 5, 5, 0.7);
  font-size: 14px;
  line-height: 1.5;
}

.event-card .button {
  width: 100%;
}

.event-actions {
  margin-top: 46px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.event-calendar-button svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.legal-page {
  min-height: 980px;
  padding: 96px var(--gutter) 118px;
  background: var(--paper);
  color: var(--black);
}

.legal-document {
  max-width: 1240px;
}

.legal-document h1 {
  margin-bottom: 74px;
  font-size: clamp(2rem, 3.2vw, 3rem);
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.legal-section {
  max-width: 1160px;
  margin-bottom: 32px;
}

.legal-section h2 {
  margin-bottom: 8px;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}

.legal-section p,
.legal-section li {
  color: rgba(14, 14, 14, 0.78);
  font-size: 16px;
  line-height: 1.72;
}

.legal-section p {
  margin-bottom: 0;
}

.legal-section ul {
  margin: 24px 0 0;
  padding-left: 20px;
}

.legal-section li {
  padding-left: 6px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  max-width: var(--content);
  margin-top: 56px;
}

.gallery-grid img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  filter: grayscale(1) contrast(1.08);
}

.gallery-grid img:hover {
  filter: grayscale(0.2) contrast(1.04);
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(292px, 1fr) minmax(620px, 3fr);
  gap: clamp(44px, 6vw, 80px);
  padding-top: 81px;
  padding-bottom: 80px;
  background: #000000;
  color: var(--white);
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.footer-brand img {
  width: 164px;
  margin-bottom: 24px;
}

.footer-brand p {
  max-width: 292px;
  color: var(--grey);
  font-size: 16px;
  line-height: 1.62;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 24px;
}

.social-links a {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line-light);
  color: var(--white);
}

.social-links a:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.social-links svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.social-links a:first-child svg,
.social-links a:nth-child(3) svg,
.social-links a:nth-child(4) svg {
  fill: currentColor;
  stroke: none;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 48px;
}

.footer-nav h2 {
  margin-bottom: 24px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.56;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.footer-nav a {
  display: block;
  margin-bottom: 16px;
  color: var(--grey);
  font-size: 16px;
  line-height: 1.5;
}

.footer-nav a:hover,
.footer-bottom a:hover {
  color: var(--orange);
}

.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 32px;
  border-top: 1px solid var(--line-light);
  color: var(--grey-2);
  font-size: 14px;
  line-height: 1.5;
}

.footer-bottom p {
  margin-bottom: 0;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 32px;
}

@media (max-width: 1180px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: flex-start;
  }

  .focus-grid,
  .offer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .crews,
  .event-grid,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .volunteer-intro,
  .volunteer-opportunity,
  .volunteer-rewards {
    grid-template-columns: 1fr;
  }

  .volunteer-tier-grid {
    grid-template-columns: 1fr;
  }

  .story {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .scroll-cue {
    order: 2;
  }
}

@media (max-width: 760px) {
  :root {
    --gutter: 20px;
  }

  .site-header {
    position: sticky;
    display: block;
    min-height: 61px;
    padding: 0;
    background: #000000;
  }

  .brand-mark,
  .site-header > .nav-links,
  .site-header > .header-actions {
    display: none;
  }

  .mobile-menu {
    display: block;
    width: 100%;
    min-height: 61px;
    background: #000000;
    color: var(--white);
  }

  .mobile-menu summary {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 61px;
    padding: 11px 35px 10px;
    cursor: pointer;
    list-style: none;
  }

  .mobile-menu summary::-webkit-details-marker {
    display: none;
  }

  .mobile-brand {
    display: block;
    width: 151px;
  }

  .mobile-brand img {
    width: 151px;
    height: 24px;
    object-fit: contain;
  }

  .mobile-menu-actions {
    display: flex;
    align-items: center;
    gap: 20px;
  }

  .mobile-account {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: var(--white);
  }

  .mobile-account svg {
    width: 38px;
    height: 38px;
    fill: currentColor;
  }

  .mobile-menu-button {
    width: 45px;
    height: 35px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: var(--white);
    color: #000000;
  }

  .mobile-menu-button svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
  }

  .mobile-menu[open] {
    min-height: 61px;
    background: #000000;
  }

  .mobile-menu[open] summary {
    background: transparent;
  }

  .mobile-menu[open] ~ .nav-links {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    width: min(323px, calc(100% - 70px));
    margin: 24px auto 0;
    padding-bottom: 36px;
  }

  .mobile-menu[open] ~ .nav-links a {
    width: 100%;
    min-height: 45px;
  }

  .mobile-menu-panel {
    display: none;
  }

  .mobile-menu-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .mobile-menu-group:first-child {
    gap: 18px;
  }

  .mobile-menu-group h2 {
    margin: 0 0 6px;
    color: var(--white);
    font-size: 16px;
    font-weight: 700;
    line-height: 28px;
    text-transform: uppercase;
  }

  .mobile-menu-group a,
  .mobile-cart-link {
    min-height: 28px;
    display: inline-flex;
    align-items: center;
    color: var(--white);
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
  }

  .mobile-menu-group a + a {
    margin-top: 0;
  }

  .mobile-cart-link {
    gap: 12px;
  }

  .mobile-cart-link svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
  }

  .mobile-legal {
    display: flex;
    flex-direction: column;
    gap: 13px;
    color: #6a7282;
    font-size: 14px;
    line-height: 20px;
  }

  .mobile-legal div {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    width: 100%;
    white-space: nowrap;
  }

  .hero {
    min-height: 520px;
    align-items: center;
    background-position: center top;
  }

  .hero-copy h1 {
    font-size: clamp(2rem, 11vw, 3rem);
  }

  .hero-copy .section-kicker {
    margin-bottom: 18px;
  }

  .about,
  .focus,
  .offers,
  .crews,
  .story,
  .events,
  .gallery,
  .about-hero,
  .about-intro,
  .about-mission,
  .about-story,
  .site-footer {
    padding-block: 58px;
  }

  .legal-page {
    min-height: auto;
    padding-block: 58px 76px;
  }

  .legal-document h1 {
    margin-bottom: 52px;
  }

  .legal-section h2 {
    font-size: 18px;
  }

  .legal-section p,
  .legal-section li {
    font-size: 14px;
  }

  .about,
  .focus-grid,
  .offer-grid,
  .event-grid,
  .footer-nav,
  .about-intro,
  .about-story-grid {
    grid-template-columns: 1fr;
  }

  .focus-grid,
  .offer-grid,
  .event-grid,
  .gallery-grid {
    margin-top: 42px;
  }

  .focus-card {
    min-height: auto;
  }

  .offers {
    padding: 58px 0 70px;
    overflow: hidden;
  }

  .offers .section-heading {
    padding-inline: 35px;
  }

  .offer-grid {
    display: flex;
    grid-template-columns: none;
    gap: 0;
    width: 100%;
    max-width: none;
    margin-top: 42px;
    padding: 0 35px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 35px;
    scrollbar-width: none;
  }

  .offer-grid::-webkit-scrollbar {
    display: none;
  }

  .offer-grid article {
    width: calc(100vw - 70px);
    min-width: calc(100vw - 70px);
    max-width: 467px;
    min-height: 498px;
    margin-right: 24px;
    padding: 48px;
    scroll-snap-align: start;
    background: #000000;
    border: 0;
  }

  .offer-grid article:last-child {
    margin-right: 0;
  }

  .offer-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 29px;
  }

  .offer-icon svg {
    width: 33px;
    height: 40px;
  }

  .offer-grid h3 {
    min-height: 0;
    margin-bottom: 16px;
    font-size: 28px;
    line-height: 40px;
  }

  .offer-grid p {
    margin-bottom: 26px;
    color: #99a1af;
    font-size: 21px;
    line-height: 32px;
  }

  .offer-grid a {
    width: fit-content;
    min-width: 224px;
    min-height: 51px;
    padding: 14px 30px;
    font-size: 16px;
    line-height: 19px;
  }

  .offer-mobile-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin-top: 66px;
    color: var(--white);
  }

.offer-mobile-button {
  width: 66px;
  height: 51px;
  border: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: var(--white);
  color: #000000;
  cursor: pointer;
}

  .offer-mobile-button svg {
    width: 30px;
    height: 30px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .offer-mobile-count {
    min-width: 67px;
    text-align: center;
    font-size: 22px;
    line-height: 31px;
  }

  .crew-collage {
    gap: 12px;
  }

  .crew-collage img:nth-child(even) {
    transform: translateY(28px);
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .about-hero {
    min-height: 364px;
    background-image: url("../images/figma-about-mobile-hero.png");
    background-position: center bottom;
    background-size: cover;
  }

  .about-intro {
    min-height: auto;
    gap: 24px;
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .about-intro .section-kicker,
  .about-mission .section-kicker,
  .about-story .section-kicker {
    margin-bottom: 24px;
    font-size: 10px;
  }

  .about-intro .section-heading h2,
  .about-story-heading h2 {
    font-size: clamp(1.7rem, 8vw, 2.25rem);
    line-height: 1.19;
  }

  .about-intro .body-copy,
  .about-story-copy p {
    font-size: 14px;
    line-height: 1.72;
  }

  .crews-page-hero {
    min-height: 364px;
    align-items: center;
    padding: 0 35px;
    background-image: url("../images/figma-crews-hero-mobile.png");
    background-position: center bottom;
  }

  .crews-page-hero h1 {
    font-size: 28px;
    font-weight: 900;
    line-height: 48px;
    text-align: center;
  }

  .crew-search {
    padding: 62px 35px;
  }

  .crew-search-form {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .crew-field label {
    font-size: 10px;
    line-height: 18px;
  }

  .crew-control {
    min-height: 31px;
    padding-inline: 13px;
    font-size: 16px;
    line-height: 16px;
  }

  .crew-search .button {
    width: 100%;
    margin-top: 1px;
  }

  .crew-listings {
    grid-template-columns: 1fr;
    gap: 34px;
    padding: 64px 35px 90px;
  }

  .crew-filters {
    display: none;
  }

  .crew-sort-mobile {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    color: var(--black-2);
  }

  .crew-sort-mobile span:first-child {
    font-size: 12px;
    font-weight: 700;
    line-height: 16px;
    text-transform: uppercase;
  }

  .crew-sort-mobile .button {
    min-width: 82px;
    min-height: 27px;
    padding: 4px 18px;
    border-radius: 999px;
    background: #000000;
    color: var(--white);
    font-family: "Montserrat", Arial, Helvetica, sans-serif;
    font-size: 14px;
    font-weight: 700;
    line-height: 20px;
    text-transform: none;
  }

  .crew-card-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .crew-card {
    min-height: 479px;
  }

  .crew-card-image {
    height: 223px;
  }

  .crew-card-body {
    padding: 27px 24px 24px;
  }

  .crew-card h2 {
    font-size: 24px;
    line-height: 32px;
  }

  .crew-card p {
    margin-bottom: 29px;
  }

  .crew-network {
    min-height: 1164px;
    grid-template-columns: 1fr;
    gap: 46px;
    align-items: start;
    padding: 64px 35px 84px;
  }

  .crew-network-copy .section-kicker {
    margin-bottom: 28px;
    font-size: 10px !important;
    line-height: 20px;
  }

  .crew-network-copy h2 {
    margin-bottom: 36px;
    font-size: 36px;
    line-height: 48px;
  }

  .crew-network-copy p {
    margin-bottom: 38px;
    font-size: 21.6px;
    line-height: 30px;
  }

  .crew-network-copy .button {
    width: 207px;
  }

  .crew-testimonial {
    min-height: 773px;
  }

  .crew-testimonial::before {
    top: 0;
    left: 0;
    right: auto;
    width: 100%;
    height: 499px;
    background-position: center top;
  }

  .crew-testimonial-card {
    left: 0;
    bottom: 0;
    width: 100%;
    min-height: 274px;
    padding: 50px 48px 42px;
  }

  .volunteer-hero {
    min-height: 364px;
    background-image: url("../images/figma-volunteer-hero-mobile.png");
    background-position: center bottom;
  }

  .volunteer-intro {
    min-height: 820px;
    grid-template-columns: 1fr;
    gap: 68px;
    padding: 64px 35px;
  }

  .volunteer-intro .section-kicker,
  .volunteer-opportunity .section-kicker,
  .volunteer-rewards .section-kicker,
  .volunteer-cta .section-kicker,
  .volunteer-gallery .section-kicker {
    margin-bottom: 24px;
    font-size: 10px;
    line-height: 20px;
  }

  .volunteer-intro h2 {
    font-size: 48px;
    line-height: 48px;
  }

  .volunteer-intro h2 .desktop-copy {
    display: none;
  }

  .volunteer-intro h2 .mobile-copy {
    display: inline;
  }

  .volunteer-intro > p {
    font-size: 16px;
    line-height: 29.8px;
  }

  .volunteer-opportunity {
    min-height: 1794px;
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 64px 35px 80px;
  }

  .volunteer-opportunity-copy h2 {
    margin-bottom: 32px;
    font-size: 42px;
    line-height: 46px;
  }

  .volunteer-opportunity-copy > p:not(.section-kicker) {
    margin-bottom: 38px;
  }

  .volunteer-benefits-card {
    min-height: 523px;
    padding: 48px;
  }

  .volunteer-opportunity-image {
    height: auto;
    aspect-ratio: 323 / 523;
  }

  .volunteer-rewards {
    min-height: 1587px;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: start;
    padding: 64px 35px 84px;
  }

  .volunteer-rewards-copy h2 {
    font-size: 36px;
    line-height: 48px;
  }

  .volunteer-tier-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .volunteer-tier-card {
    min-height: 300px;
  }

  .volunteer-cta {
    min-height: 463px;
    padding: 64px 35px;
    align-items: flex-start;
    text-align: left;
  }

  .volunteer-cta h2 {
    font-size: 36px;
    line-height: 48px;
  }

  .volunteer-cta p:not(.section-kicker) {
    font-size: 20px;
    line-height: 30px;
  }

  .volunteer-gallery {
    min-height: 1376px;
    padding: 64px 35px 74px;
  }

  .volunteer-gallery h2 {
    margin-bottom: 52px;
    font-size: 36px;
    line-height: 48px;
  }

  .volunteer-gallery-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .volunteer-gallery-grid img:nth-child(n + 4) {
    display: none;
  }

  .volunteer-gallery-more {
    display: inline-flex;
    width: 121px;
    margin-top: 34px;
  }

  .events-page-hero {
    min-height: 364px;
    background-image: url("../images/figma-events-hero-mobile.png");
    background-position: center bottom;
  }

  .events-filter {
    min-height: 555px;
    padding: 65px 35px;
  }

  .events-filter-form {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .events-filter-field {
    gap: 8px;
  }

  .events-filter-field label {
    font-size: 10px;
    line-height: 18px;
  }

  .events-filter-search {
    margin-bottom: 0;
  }

  .events-control {
    width: 100%;
    height: 45px;
  }

  .events-filter .button {
    width: 100%;
  }

  .events-list {
    min-height: 5206px;
    padding: 0 35px 65px;
  }

  .events-card-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .events-page-card {
    min-height: 553px;
  }

  .events-page-card img {
    height: 280px;
  }

  .events-page-card > div {
    padding: 32px;
  }

  .events-page-card h2 {
    font-size: 24px;
    line-height: 30px;
  }

  .events-organizers {
    min-height: 998px;
    grid-template-columns: 1fr;
    gap: 34px;
    align-items: start;
    padding: 65px 35px;
  }

  .events-organizers .section-kicker {
    margin-bottom: 18px;
  }

  .events-organizers h2 {
    margin-bottom: 18px;
    font-size: 36px;
    line-height: 48px;
  }

  .events-organizers p:not(.section-kicker) {
    margin-bottom: 18px;
    font-size: 16px;
    line-height: 30px;
  }

  .events-organizers .button.mobile-copy {
    display: inline-flex;
  }

  .events-organizers img {
    height: 450px;
  }

  .contact-hero {
    min-height: 364px;
    background-image: url("../images/figma-contact-hero-mobile.png");
    background-position: center bottom;
  }

  .contact-section {
    min-height: 1569px;
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 65px 35px;
  }

  .contact-form-column h2,
  .contact-info-column > h2 {
    margin-bottom: 40px;
    font-size: 36px;
    line-height: 48px;
  }

  .contact-form {
    gap: 24px;
  }

  .contact-form .button {
    width: 148px;
  }

  .contact-info-column {
    padding-top: 0;
  }

  .contact-methods {
    margin-bottom: 25px;
  }

  .contact-method {
    grid-template-columns: 48px minmax(0, 1fr);
  }

  .contact-method p {
    font-size: 16px;
    line-height: 24px;
  }

  .contact-method p + p {
    font-size: 14px;
    line-height: 21px;
  }

  .contact-ecosystem {
    min-height: 380.5px;
    padding: 40px;
  }

  .contact-ecosystem h3 {
    font-size: 24px;
    line-height: 36px;
  }

  .contact-ecosystem p:not(.section-kicker) {
    margin-bottom: 26px;
  }

  .contact-ecosystem .button.mobile-copy {
    display: inline-flex;
    width: 119px;
  }

  .contact-follow {
    margin-top: 25px;
  }

  .contact-social-links {
    gap: 16px;
  }

  .faq-hero {
    min-height: 364px;
    background-image: url("../images/figma-faq-hero-mobile.png");
    background-position: center bottom;
  }

  .faq-section {
    min-height: 1632px;
    padding: 65px 35px;
  }

  .faq-list {
    gap: 24px;
  }

  .faq-item summary {
    min-height: 71px;
    padding: 18px 24px;
    font-size: 18px;
    line-height: 31px;
  }

  .faq-item p {
    padding: 8px 23px 0;
    font-size: 16px;
    line-height: 30px;
  }

  .about-mission {
    min-height: auto;
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .about-mission .section-heading h2 {
    margin-bottom: 42px;
    font-size: clamp(1.7rem, 8vw, 2.25rem);
  }

  .about-mission .section-heading p:last-child {
    font-size: clamp(1.45rem, 7.6vw, 1.875rem);
    line-height: 1.14;
  }

  .about-story {
    min-height: auto;
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .desktop-copy {
    display: none;
  }

  .mobile-copy {
    display: inline;
  }

  .about-story-grid {
    gap: 34px;
    margin-top: 34px;
  }

  .about-story-media {
    height: auto;
    aspect-ratio: 353 / 430;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 430px) {
  .button {
    min-width: min(100%, 121px);
    width: auto;
    white-space: normal;
    text-align: center;
  }

  .header-actions .button {
    width: auto;
  }

  .button-row .button,
  .event-card .button,
  .focus-card .button {
    width: 100%;
  }

  .offer-grid a {
    white-space: normal;
    text-align: center;
  }

  .mobile-menu summary {
    padding-inline: clamp(20px, 8.9vw, 35px);
  }

  .mobile-menu-panel {
    width: min(323px, calc(100% - clamp(40px, 17.8vw, 70px)));
  }

  .event-card > div {
    padding: 24px;
  }

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

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

  .hero-copy .section-kicker,
  .hero-copy h1,
  main,
  .site-footer,
  body.is-page-leaving main,
  body.is-page-leaving .site-footer {
    opacity: 1;
    transform: none;
    animation: none;
    filter: none;
  }

  .nav-links a,
  .button,
  .icon-action {
    transition: none;
  }
}
