:root {
  --red: #ef2b24;
  --dark: #0a0a0a;
  --dark-2: #141414;
  --light: #f5f5f5;
  --white: #f5f5f5;
  --muted: #8a8a8a;
  --ink: #161817;

  --font-display: "Inter", "Helvetica Neue", Arial, sans-serif;
  --font-ui: "Space Grotesk", system-ui, sans-serif;
  --font-body: "Space Grotesk", system-ui, sans-serif;

  --pad: 40px;
  --container: calc(100vw - (var(--pad) * 2));
  --section-headline-size: clamp(3.25rem, 7.2vw, 7.3rem);
  --body-size: clamp(0.94rem, 1.08vw, 1.05rem);
  --gallery-gap: clamp(0.9rem, 1.35vw, 1.4rem);
  --hero-accent: var(--red);
  --hero-scroll: 0;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: auto; }
html.lenis, html.lenis body { height: auto; }
body {
  font-family: var(--font-display);
  background-color: var(--dark);
  color: var(--light);
  font-size: 16px;
  line-height: 1.45;
  letter-spacing: -0.02em;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
img { border-radius: 16px; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; color: inherit; }
button { background: none; border: none; cursor: pointer; }
ul { list-style: none; padding: 0; }
::selection { background: var(--red); color: var(--white); }
:focus-visible { outline: 2px solid var(--red); outline-offset: 4px; }

.container { width: var(--container); margin-inline: auto; }
.scroll-nav {
  position: fixed; z-index: 20; inset: 0 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  min-height: clamp(3.25rem, 4.2vw, 4.25rem); padding: clamp(0.5rem, 0.75vw, 0.7rem) var(--pad);
  background: var(--dark); color: var(--white);
  font-family: var(--font-display); font-size: clamp(0.95rem, 1vw, 1.25rem);
  font-weight: 500; line-height: 1; letter-spacing: -0.055em; text-transform: uppercase;
  transform: translateY(-105%);
  transition: transform 0.45s var(--ease-out);
  will-change: transform;
}
.scroll-nav.is-visible { transform: translateY(0); }
.scroll-nav__primary,
.scroll-nav__links,
.scroll-nav__meta { display: flex; align-items: center; }
.scroll-nav__primary { gap: clamp(1.5rem, 3.1vw, 4.25rem); min-width: 0; }
.scroll-nav__brand { white-space: nowrap; }
.scroll-nav__links { gap: clamp(1.1rem, 2.5vw, 3.6rem); }
.scroll-nav__meta { gap: clamp(1rem, 1.8vw, 2rem); }
.scroll-nav a { transition: opacity 0.2s ease; }
.scroll-nav a:hover { opacity: 0.48; }
.scroll-nav__toggle,
.scroll-nav__menu { display: none; }
.scroll-nav .scroll-nav__cta {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 2.15rem; padding: 0.45rem 1rem;
  border-radius: 999px;
  background: var(--white); color: var(--dark);
  font-size: 0.8em; letter-spacing: -0.035em;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.scroll-nav .scroll-nav__cta:hover { opacity: 1; background: var(--red); color: var(--dark); transform: translateY(-1px); }
.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;
}

.hero {
  position: sticky; top: 0; z-index: 0;
  height: 100svh; min-height: 100svh; display: grid;
  align-items: end; overflow: hidden; color: var(--hero-accent);
  background-color: var(--dark);
}
main > section:not(.hero) { position: relative; z-index: 1; }
.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__background {
  display: block; width: 100%; height: 100%; object-fit: cover; object-position: center 35%;
}
.hero__scrim {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,0.13) 0%, rgba(10,10,10,0) 48%, rgba(10,10,10,0.18) 100%);
}
.hero__navigation {
  position: absolute; z-index: 2;
  top: clamp(16rem, 18vw, 21rem); left: var(--pad); right: var(--pad);
  display: grid; grid-template-columns: 14rem 10rem minmax(0, 1fr) auto;
  align-items: start; gap: clamp(1.5rem, 3vw, 4.5rem);
  font-family: var(--font-ui); font-size: clamp(0.62rem, 0.76vw, 0.78rem);
  font-weight: 500; line-height: 1.42; text-transform: uppercase; letter-spacing: -0.03em;
  transform: translateY(calc(var(--hero-scroll) * -1.5rem));
  opacity: calc(1 - (var(--hero-scroll) * 0.55));
}
.hero__identity,
.hero__location p { margin: 0; }
.hero__links { display: flex; flex-direction: column; align-items: flex-start; }
.hero__location { justify-self: end; }
.hero__location,
.hero__links { display: flex; flex-direction: column; gap: 0.1rem; }
.hero__location a { margin-bottom: 0.1rem; }
.hero__instagram { white-space: nowrap; }
.hero__navigation a { transition: opacity 0.2s ease; }
.hero__navigation a:hover { opacity: 0.58; }

.hero__scroll {
  position: absolute; z-index: 2; left: 50%; bottom: clamp(1.5rem, 3vw, 2.75rem);
  display: inline-flex; flex-direction: column; align-items: center; gap: 0.45rem;
  transform: translateX(-50%);
  font-family: var(--font-ui); font-size: 0.65rem; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.12em;
  transition: opacity 0.2s ease;
}
.hero__scroll:hover { opacity: 0.62; }
.hero__scroll-arrow {
  font-size: 1.1rem; line-height: 0.8;
  animation: scroll-nudge 1.8s ease-in-out infinite;
}
@keyframes scroll-nudge {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(0.35rem); }
}

.hero__title-wrap {
  position: absolute; z-index: 1;
  top: clamp(0.5rem, 0.5vw, 1rem); left: var(--pad); right: var(--pad);
  width: auto;
  transform: translateY(calc(var(--hero-scroll) * -8vh));
  opacity: calc(1 - (var(--hero-scroll) * 0.65));
}
.hero__title {
  position: relative;
  font-family: var(--font-display);
  font-size: clamp(5.4rem, 16.5vw, 20rem);
  font-weight: 400;
  line-height: 0.78;
  letter-spacing: -0.09em;
  text-transform: uppercase;
  color: var(--hero-accent);
  white-space: nowrap;
  width: 100%;
  text-align: left;
}
.hero__title-text { display: inline-block; transform: scaleX(0.82); transform-origin: left top; }
.hero__copyright {
  position: absolute; top: 0.15rem; right: 0.1rem;
  width: clamp(1rem, 1.65vw, 2rem); height: clamp(1rem, 1.65vw, 2rem);
  overflow: visible;
}
.about {
  min-height: 100svh;
  height: 100svh;
  background-color: var(--dark); color: var(--light);
  padding-block: clamp(3rem, 5vw, 5rem);
}
.about__grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: 1fr auto;
  gap: clamp(2rem, 4vw, 4rem) var(--pad);
  height: 100%;
}
.section-title,
.values__title,
.join__title {
  font-family: var(--font-display);
  font-size: var(--section-headline-size);
  font-weight: 400;
  line-height: 0.86;
  letter-spacing: -0.065em;
  text-transform: uppercase;
}
.about__copy {
  grid-column: 1 / 8; grid-row: 1; align-self: start;
  max-width: 58rem; padding-top: clamp(1rem, 3vw, 3rem);
}
.about__eyebrow {
  display: inline-flex; align-items: center; gap: 0.6rem; margin-bottom: 1.25rem;
  font-family: var(--font-ui); font-size: 0.68rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.1em; color: var(--white);
}
.about__headline {
  width: min(100%, clamp(18rem, 49vw, 56rem));
  min-width: min(100%, 18rem);
  max-width: 56rem;
  font-family: var(--font-display); font-size: clamp(2rem, 3.1vw, 3.7rem);
  font-weight: 400; line-height: 1.03; letter-spacing: -0.05em;
}
.headline-highlight {
  display: inline;
  padding: 0 0.06em 0.12em;
  color: var(--white);
  background: linear-gradient(var(--red), var(--red)) no-repeat 0 100% / 0% 0.16em;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}
.headline-highlight.is-highlighted {
  animation: highlight-underline 1.35s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.about__headline .headline-highlight:last-child {
  animation-delay: 0.32s;
}
@keyframes highlight-underline {
  to { background-size: 100% 0.16em; }
}
.about__community {
  grid-column: 1 / 5; grid-row: 2; align-self: end;
  max-width: 24rem;
}
.about__community-copy { margin-top: 0; }
.about__community-copy p {
  max-width: 40ch; font-family: var(--font-ui); font-size: var(--body-size);
  line-height: 1.35; letter-spacing: -0.025em; color: var(--muted);
}
.about__mark {
  grid-column: 8 / 13; grid-row: 1 / 3;
  align-self: center; justify-self: end;
  width: min(100%, 34rem); aspect-ratio: 1; margin: 0;
}
.about__mark img { width: 100%; height: 100%; object-fit: cover; transition: opacity 0.32s var(--ease-out); }
.about__mark img.is-changing { opacity: 0.14; }

.section-header {
  display: flex; flex-direction: column; gap: 0.75rem;
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
}
.section-header--split {
  flex-direction: row; align-items: flex-end; justify-content: space-between;
  flex-wrap: wrap; gap: 1.5rem;
}
.section-header__desc { max-width: 34ch; font-size: var(--body-size); color: var(--muted); line-height: 1.45; }
.section-tag {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-family: var(--font-ui); font-size: 0.7rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.12em; color: var(--white);
}
.section-tag--light { opacity: 1; }
.text-link {
  font-family: var(--font-ui); font-size: 0.8rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.08em; color: var(--red);
  transition: opacity 0.2s;
}
.text-link:hover { opacity: 0.7; }

.values {
  padding-block: clamp(5rem, 8vw, 8rem);
  background-color: var(--dark); color: var(--light);
}
.values__layout {
  display: grid; grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(2.5rem, 5vw, 5rem) var(--pad);
}
.values__title {
  display: flex; flex-direction: column; width: auto;
}
.values__intro {
  grid-column: 1 / 5; grid-row: 1; align-self: start;
  max-width: 36ch;
}
.values__eyebrow {
  display: inline-flex; align-items: center; gap: 0.6rem; margin-bottom: 1.25rem;
  font-family: var(--font-ui); font-size: 0.68rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.1em; color: var(--white);
}
.values__title { font-size: clamp(2.8rem, 4.6vw, 5.5rem); }
.values__title span { display: block; white-space: nowrap; }
.values__intro p {
  max-width: 36ch;
  margin-top: clamp(1.5rem, 3vw, 2.75rem);
  font-family: var(--font-ui); font-size: var(--body-size);
  line-height: 1.35; letter-spacing: -0.025em; color: var(--muted);
}
.values__benefits {
  grid-column: 6 / 13; grid-row: 1;
}
.values__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: clamp(1.5rem, 4vw, 4rem);
}
.values__item {
  min-height: clamp(10rem, 13vw, 13rem);
  display: flex; flex-direction: column; align-items: stretch;
  border-top: 1px solid rgba(245,245,245,0.16);
  padding-block: 1rem 1.5rem;
}
.values__number {
  display: block;
  margin-bottom: 1.6rem;
  font-family: var(--font-ui); font-size: 0.7rem;
  font-weight: 500; line-height: 1; letter-spacing: 0.02em;
}
.values__item h3 {
  font-family: var(--font-display); font-size: clamp(1rem, 1.3vw, 1.25rem);
  font-weight: 400; line-height: 1.08; letter-spacing: -0.035em;
}
.values__item p {
  max-width: 32ch; margin-top: 0.7rem;
  font-family: var(--font-ui); font-size: var(--body-size);
  line-height: 1.35; letter-spacing: -0.025em; color: var(--muted);
}

.next-event { height: 100vh; min-height: 100svh; padding: 0; background: var(--dark); color: var(--light); }
.next-event__carousel {
  position: relative; height: 100%; min-height: 0; overflow: hidden;
  isolation: isolate; outline: none; border-radius: 0; cursor: pointer;
}
.next-event__carousel:focus-visible { box-shadow: 0 0 0 2px var(--light); }
.next-event__slides { position: absolute; inset: 0; }
.next-event__slide {
  position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: space-between;
  padding: clamp(1.25rem, 3vw, 3rem); opacity: 0; visibility: hidden;
  z-index: 0; isolation: isolate; border-radius: 0;
  transform: scale(1.035); transition: opacity 0.55s var(--ease-out), transform 0.9s var(--ease-out), visibility 0s linear 0.55s;
}
.next-event__slide.is-active { z-index: 1; opacity: 1; visibility: visible; transform: scale(1); transition-delay: 0s; }
.next-event__video, .next-event__shade { position: absolute; inset: 0; width: 100%; height: 100%; }
.next-event__image { z-index: -2; object-fit: cover; object-position: center; filter: saturate(0.88) contrast(1.06); transition: transform 1.4s var(--ease-out); border-radius: 0; }
.next-event__video { z-index: -2; object-fit: cover; object-position: center; filter: saturate(0.88) contrast(1.06); transition: transform 1.4s var(--ease-out); border-radius: 0; }
.next-event__slide:hover .next-event__video { transform: scale(1.03); }
.next-event__shade { z-index: -1; background: linear-gradient(180deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.08) 42%, rgba(0,0,0,0.8) 100%); }
.next-event__topline { z-index: 1; }
.next-event__content { position: static; z-index: 1; }
.next-event__topline {
  position: absolute; top: 44%; left: clamp(1.25rem, 3vw, 3rem); right: clamp(1.25rem, 3vw, 3rem);
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); align-items: center;
  font-family: var(--font-ui); font-size: 0.68rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.12em;
}
.next-event__date { color: var(--white); }
.next-event__project, .next-event__year { text-align: center; color: var(--light); }
.next-event__view { justify-self: end; color: var(--light); transition: color 0.2s, opacity 0.2s; }
.next-event__view:hover { color: var(--light); opacity: 0.7; }
.next-event__content { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(16rem, 0.75fr); gap: clamp(2rem, 8vw, 10rem); align-items: end; }
.next-event__heading { padding-bottom: clamp(3rem, 6vh, 5rem); }
.next-event__kicker { display: inline-flex; align-items: center; gap: 0.6rem; margin-bottom: 1rem; font-family: var(--font-ui); font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: var(--white); }
.next-event__title { max-width: none; margin: 0; font-family: var(--font-display); font-size: clamp(3.8rem, 8vw, 8rem); font-weight: 400; line-height: 0.78; letter-spacing: -0.08em; text-transform: uppercase; white-space: nowrap; }
.next-event__info { width: min(100%, 32rem); justify-self: end; padding-bottom: 3.25rem; }
.next-event__copy { max-width: 39ch; margin-bottom: 24px; font-family: var(--font-ui); font-size: var(--body-size); line-height: 1.45; letter-spacing: -0.025em; }
.event-countdown {
  position: absolute; left: clamp(1.25rem, 3vw, 3rem); bottom: clamp(1.25rem, 3vw, 3rem); z-index: 2;
  display: flex; align-items: flex-start; gap: clamp(1.1rem, 2.2vw, 2.4rem); margin: 0;
}
.event-countdown > div { position: relative; min-width: clamp(2.5rem, 4.5vw, 5rem); }
.event-countdown > div:not(:last-child)::after {
  content: ":"; position: absolute; top: -0.1em; right: clamp(-1.25rem, -1.1vw, -0.65rem);
  font-family: var(--font-display); font-size: clamp(1.5rem, 2.8vw, 3.2rem); font-weight: 400; line-height: 0.82;
  color: rgba(245,245,245,0.8);
}
.event-countdown strong { display: block; font-family: var(--font-display); font-size: clamp(2rem, 3.7vw, 4.4rem); font-weight: 500; line-height: 0.82; letter-spacing: -0.07em; font-variant-numeric: tabular-nums; }
.event-countdown span { display: block; margin-top: 0.45rem; font-family: var(--font-ui); font-size: 0.52rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(245,245,245,0.7); }
.next-event__cta,
.join__cta {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.75rem;
  min-height: 3rem; padding: 0.7rem 1.25rem;
  border: 1px solid var(--white); border-radius: 999px; background: var(--white); color: var(--dark);
  font-family: var(--font-body); font-size: 0.7rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.12em;
  transition: opacity 0.2s, transform 0.2s;
}
.next-event__cta:hover,
.join__cta:hover { opacity: 0.82; }
.next-event__cta:active,
.join__cta:active { transform: translateY(1px); }
.next-event__progress {
  position: absolute; right: clamp(1.25rem, 3vw, 3rem); bottom: clamp(1.5rem, 3vw, 3rem); z-index: 2;
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 0.35rem;
  width: clamp(11rem, 18vw, 18rem); height: 2px;
}
.next-event__progress-step {
  position: relative; display: block; overflow: hidden; background: rgba(245,245,245,0.35);
}
.next-event__progress-step::after {
  content: ""; position: absolute; inset: 0; transform: scaleX(0); transform-origin: left center; background: var(--light);
}
.next-event__progress-step.is-complete::after { transform: scaleX(1); }
.next-event__progress-step.is-active::after { animation: event-progress 5s linear forwards; }
@keyframes event-progress { to { transform: scaleX(1); } }

.stats { padding-block: clamp(5rem, 9vw, 8rem); background-color: var(--dark); color: var(--light); }
.stats__top {
  display: block;
  margin-bottom: clamp(4rem, 8vw, 7rem);
}
.stats__header { max-width: 46rem; margin-inline: auto; text-align: center; }
.stats__eyebrow {
  display: inline-flex; align-items: center; gap: 0.6rem; margin-bottom: 1.25rem;
  font-family: var(--font-ui); font-size: 0.68rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.1em; color: var(--white);
}
.stats__title {
  font-family: var(--font-display); font-size: clamp(2.8rem, 6vw, 6.5rem);
  font-weight: 400; line-height: 0.88; letter-spacing: -0.065em;
  text-transform: uppercase;
}
.stats__title span { display: block; white-space: nowrap; }
.stats__intro {
  width: min(100%, 60ch); max-width: 60ch; margin: 1.75rem auto 0;
  font-family: var(--font-ui); font-size: var(--body-size);
  line-height: 1.4; letter-spacing: -0.025em; color: var(--muted); text-align: center;
}
.stats__intro span { display: block; white-space: nowrap; }
.stats__grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: clamp(1.5rem, 4vw, 4rem); }
.stat { border-top: 1px solid rgba(245,245,245,0.16); padding-top: 1rem; }
.stat__num {
  display: block; color: var(--light);
  font-family: var(--font-display); font-size: clamp(3.6rem, 7vw, 8rem);
  font-weight: 400; line-height: 0.82; letter-spacing: -0.07em;
  font-variant-numeric: tabular-nums;
}
.stat__label {
  display: block; max-width: 20ch; margin-top: 1rem;
  font-family: var(--font-ui); font-size: var(--body-size); font-weight: 400;
  line-height: 1.25; letter-spacing: -0.025em; color: var(--muted);
}

.gallery {
  overflow: hidden;
  padding-block: clamp(4rem, 10vh, 7rem);
  background-color: var(--dark);
}
.gallery__header {
  display: flex; flex-direction: column; align-items: center; gap: 1rem;
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
  text-align: center;
}
.gallery__header .section-tag {
  padding: 0;
}
.about__eyebrow::before,
.values__eyebrow::before,
.stats__eyebrow::before,
.next-event__kicker::before,
.section-tag::before {
  content: "";
  width: 0.45rem;
  height: 0.45rem;
  flex: 0 0 auto;
  background: var(--red);
}
.gallery__note {
  max-width: 52ch;
  font-family: var(--font-ui); font-size: var(--body-size);
  font-style: normal; line-height: 1.4; text-align: center; color: var(--muted);
}
.gallery__marquee {
  width: 100%;
  overflow: visible;
  user-select: none;
}
.gallery__track {
  display: flex; width: max-content;
  animation: gallery-marquee 42s linear infinite;
  will-change: transform;
}
.gallery__set {
  display: flex; align-items: flex-start; gap: var(--gallery-gap);
  flex: 0 0 auto;
  padding-left: var(--gallery-gap);
}
.gallery-card {
  flex: 0 0 auto;
  width: clamp(13.75rem, 19vw, 19.5rem);
}
.gallery-card--compact { width: clamp(11.5rem, 15.5vw, 16rem); margin-top: clamp(2.5rem, 5vw, 5rem); }
.gallery-card--wide { width: clamp(18rem, 27vw, 28rem); margin-top: clamp(0.75rem, 2vw, 2rem); }
.gallery-card img {
  width: 100%; height: auto; aspect-ratio: 4 / 5;
  object-fit: cover; object-position: center;
  filter: saturate(0.88) contrast(1.02);
  transition: filter 0.35s var(--ease-out), transform 0.55s var(--ease-out);
}
.gallery-card--compact img { aspect-ratio: 4 / 5; }
.gallery-card--wide img { aspect-ratio: 3 / 2; }
.gallery-card figcaption { padding-top: 0.7rem; }
.gallery-card figcaption strong {
  display: block; font-family: var(--font-ui); letter-spacing: -0.03em;
}
.gallery-card figcaption strong { font-size: clamp(0.9rem, 1.2vw, 1.1rem); font-weight: 500; }
.gallery-card:hover img { filter: saturate(1) contrast(1.04); }
@keyframes gallery-marquee {
  to { transform: translateX(-50%); }
}

.join { padding-block: clamp(5rem, 12vh, 8rem); background-color: var(--dark); }
.join__grid {
  display: flex; flex-direction: column; align-items: center;
  gap: clamp(0.2rem, 0.55vw, 0.5rem);
  text-align: center;
}
.join__intro { width: min(100%, 64rem); }
.join__title {
  margin-block: 1rem 1.25rem;
}
.join__title span { display: block; white-space: nowrap; }
.join__visual {
  width: 100%;
  display: grid; place-items: center;
  min-height: clamp(24rem, 38vw, 35rem);
  overflow: visible;
  margin-top: clamp(-22rem, -22vw, -11rem);
  user-select: none;
  -webkit-user-select: none;
  -webkit-touch-callout: none;
}
.join__orbit {
  --orbit-angle: 0deg;
  position: relative;
  width: min(100%, clamp(24rem, 62vw, 68rem));
  min-width: min(100%, 24rem);
  max-width: 68rem;
  aspect-ratio: 1;
  perspective: 1000px;
  transform: rotateX(8deg) rotateZ(-3deg);
  transform-style: preserve-3d;
}
.join__orbit-track {
  position: absolute; inset: 0;
  transform-style: preserve-3d;
}
.join__orbit-card {
  position: absolute; top: 50%; left: 50%;
  width: clamp(12rem, 20vw, 20rem);
  min-width: 12rem;
  max-width: 20rem;
  aspect-ratio: 16 / 10;
  margin: 0;
  overflow: hidden; border-radius: 16px;
  background: var(--dark-2);
  transform-style: preserve-3d;
  transform: translate(-50%, -50%) rotateY(calc(var(--card-angle) + var(--orbit-angle))) translateZ(clamp(10rem, 19vw, 20rem));
  box-shadow: 0 1.2rem 2.5rem rgba(0,0,0,0.28);
  will-change: transform;
}
.join__orbit-card img {
  display: block; width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.05);
  pointer-events: none;
}
.join__subcopy {
  max-width: 45ch;
  margin: clamp(-28rem, -18vw, -8rem) 0 calc(24px - clamp(0.2rem, 0.55vw, 0.5rem));
  font-family: var(--font-ui); font-size: var(--body-size);
  line-height: 1.4; letter-spacing: -0.025em; color: var(--muted);
}

.site-footer {
  position: relative; z-index: 1;
  padding-block: clamp(4.5rem, 9vw, 8rem) clamp(1.5rem, 3vw, 2.5rem);
  background-color: var(--dark); color: var(--light);
}
.site-footer__top {
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: clamp(2rem, 5vw, 7rem);
  min-height: 0;
  margin-bottom: 48px;
  align-items: start;
}
.site-footer__label {
  display: block; font-family: var(--font-ui); font-size: 0.7rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); margin-bottom: 24px;
}
.site-footer__col nav { display: flex; flex-direction: column; gap: 0.4rem; }
.site-footer__col nav a, .site-footer__col p {
  font-family: var(--font-body); font-size: var(--body-size); color: var(--light); transition: color 0.2s;
}
.site-footer__col nav a:hover { color: var(--muted); }
.site-footer__brand-wrap { overflow: hidden; width: 100%; }
.site-footer__brand {
  display: inline-block; width: max-content; white-space: nowrap;
  font-family: var(--font-display); font-size: clamp(5rem, 16.5vw, 20rem);
  font-weight: 400; line-height: 0.78; letter-spacing: -0.09em;
  transform: scaleX(0.86); transform-origin: left top;
}
.site-footer__bottom {
  display: flex; align-items: flex-end; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
  margin-top: clamp(1.5rem, 3vw, 2.5rem);
}
.site-footer__credit, .site-footer__back { font-family: var(--font-ui); font-size: 0.7rem; color: var(--muted); }
.site-footer__back { text-transform: uppercase; letter-spacing: 0.1em; }

.reveal {
  opacity: 0; transform: translateY(2rem);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.hero__title {
  opacity: 0; transform: translateY(1.5rem);
  animation: fade-up 0.9s var(--ease-out) forwards;
}
@keyframes fade-up {
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 991px) {
  :root { --section-headline-size: clamp(2.65rem, 10vw, 5rem); }
  .about { min-height: auto; height: auto; }
  .about__grid {
    grid-template-columns: 1fr; grid-template-rows: auto;
    gap: clamp(2rem, 8vw, 4rem); height: auto;
  }
  .about__copy, .about__community, .about__mark {
    grid-column: 1; grid-row: auto;
  }
  .about__copy { width: min(100%, 42rem); margin-left: 0; padding-top: 0; }
  .about__headline { max-width: none; }
  .about__community { width: min(100%, 24rem); margin-left: 0; }
  .about__mark { width: min(100%, 24rem); margin-inline: auto; }
  .values__layout { grid-template-columns: 1fr; grid-template-rows: auto; }
  .values__title, .values__intro, .values__benefits {
    grid-column: 1; grid-row: auto;
  }
  .values__intro { max-width: 42ch; }
  .values__benefits { width: 100%; }
  .next-event__carousel { height: 100%; min-height: 0; }
  .next-event__content { grid-template-columns: 1fr; gap: 2rem; }
  .next-event__info { justify-self: start; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .join__visual { min-height: clamp(20rem, 68vw, 30rem); }
}
@media (max-width: 900px) {
  .scroll-nav { min-height: 3.6rem; padding-block: 0.55rem; }
  .scroll-nav__primary { width: 100%; justify-content: space-between; gap: 0; }
  .scroll-nav__links,
  .scroll-nav__meta { display: none; }
  .scroll-nav__toggle {
    display: grid; place-content: center; gap: 0.34rem;
    width: 2.5rem; height: 2.5rem; padding: 0; border: 0;
    background: transparent; color: inherit; cursor: pointer;
  }
  .scroll-nav__toggle span { display: block; width: 1.35rem; height: 1px; background: currentColor; transition: transform 0.25s ease; }
  .scroll-nav.is-menu-open .scroll-nav__toggle span:first-child { transform: translateY(0.17rem) rotate(45deg); }
  .scroll-nav.is-menu-open .scroll-nav__toggle span:last-child { transform: translateY(-0.17rem) rotate(-45deg); }
  .scroll-nav__menu {
    position: absolute; top: calc(100% + 0.5rem); left: var(--pad); right: var(--pad);
    padding: 1rem; background: var(--dark); border: 1px solid rgba(245,245,245,0.18);
    box-shadow: 0 1rem 2.5rem rgba(0,0,0,0.2);
  }
  .scroll-nav.is-menu-open .scroll-nav__menu { display: grid; gap: 1.25rem; }
  .scroll-nav__menu nav { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0.85rem 1rem; }
  .scroll-nav__menu nav a { font-size: 0.92em; }
  .scroll-nav__menu .scroll-nav__cta { justify-self: start; }

  .next-event { height: 100svh; min-height: 40rem; }
  .next-event__carousel { height: 100%; min-height: 0; }
  .next-event__slide {
    display: grid; grid-template-rows: auto 1fr; gap: 2.25rem;
    padding: clamp(1.5rem, 4vw, 2.25rem);
  }
  .next-event__topline {
    position: static; display: flex; justify-content: space-between; align-items: center;
    gap: 1rem; font-size: 0.62rem;
  }
  .next-event__project, .next-event__year { display: none; }
  .next-event__view { margin-left: auto; text-align: right; }
  .next-event__content { display: flex; flex-direction: column; justify-content: space-between; gap: 2.5rem; min-height: 0; }
  .next-event__heading { padding-bottom: 0; }
  .next-event__title { font-size: clamp(3.1rem, 10.5vw, 5.4rem); }
  .next-event__info { width: min(100%, 34rem); justify-self: auto; padding-bottom: 3.75rem; }
  .event-countdown { display: none; }
  .next-event__progress { right: clamp(1.5rem, 4vw, 2.25rem); bottom: 1.5rem; }

  .join { padding-block: clamp(4.5rem, 10vw, 6rem); }
  .join__visual { min-height: clamp(25rem, 70vw, 34rem); margin-top: 0; }
  .join__orbit { width: min(100%, 34rem); }
  .join__subcopy { margin: 1rem 0 24px; }
}
@media (max-width: 767px) {
  :root { --pad: 20px; --section-headline-size: clamp(2.25rem, 11.2vw, 4rem); }
  .scroll-nav { min-height: 3.25rem; padding-block: 0.5rem; font-size: clamp(0.92rem, 5vw, 1.2rem); letter-spacing: -0.045em; }
  .scroll-nav__menu nav { grid-template-columns: 1fr; }
  .scroll-nav .scroll-nav__cta { min-height: 2rem; padding-inline: 0.7rem; }
  .hero__background { object-position: 57% center; }
  .hero__navigation {
    top: clamp(9rem, 28vw, 12rem);
    grid-template-columns: 1fr 1fr; gap: 1rem 1.5rem;
    font-size: 0.62rem;
  }
  .hero__identity { grid-column: 1; }
  .hero__links { grid-column: 2; }
  .hero__location { grid-column: 2; justify-self: start; }
  .hero__instagram { grid-column: 1; grid-row: 2; align-self: end; }
  .hero__scroll { bottom: 1.25rem; font-size: 0.58rem; }
  .hero__title-wrap { top: 1rem; }
  .hero__title { font-size: clamp(3rem, 13.5vw, 5.5rem); letter-spacing: -0.075em; }
  .about { padding-block: 5rem; }
  .next-event { padding: 0; }
  .next-event__slide { gap: 1.8rem; padding: 1.25rem; }
  .next-event__topline { font-size: 0.56rem; }
  .next-event__title { font-size: clamp(3rem, 12vw, 4.5rem); }
  .next-event__info { padding-bottom: 3.25rem; }
  .next-event__copy { max-width: 32ch; }
  .event-countdown { left: 1.25rem; bottom: 1.25rem; gap: 0.85rem; }
  .event-countdown > div { min-width: 2.25rem; }
  .event-countdown strong { font-size: clamp(1.45rem, 7vw, 2.4rem); }
  .event-countdown > div:not(:last-child)::after { right: -0.55rem; font-size: clamp(1.2rem, 5vw, 2rem); }
  .event-countdown span { margin-top: 0.3rem; font-size: 0.42rem; }
  .join__visual { min-height: clamp(23rem, 105vw, 29rem); margin-top: 0; }
  .join__subcopy { margin-top: 0.5rem; }
  .section-title,
  .values__title,
  .join__title { line-height: 0.9; }
  .section-header--split { flex-direction: column; align-items: flex-start; }
  .stats__title { font-size: clamp(2.2rem, 9vw, 4rem); }
  .stats__title span { white-space: normal; }
  .stats__intro span { white-space: normal; }
  .stats__grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .gallery__note { font-size: var(--body-size); }
  .gallery-card--compact { margin-top: 2rem; }
  .gallery-card--wide { margin-top: 0.5rem; }
  .site-footer__top { grid-template-columns: 1fr 1fr; min-height: auto; }
  .site-footer__label { margin-bottom: 1.5rem; }
  .site-footer__brand { font-size: clamp(3.8rem, 15.5vw, 7rem); }
  .site-footer__bottom { flex-direction: column; align-items: flex-start; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal, .hero__title {
    opacity: 1; transform: none; animation: none; transition: none;
  }
  .headline-highlight {
    background-size: 100% 0.16em;
  }
  .about__mark img { transition: none; }
  .text-link, .hero__navigation a, .next-event__cta, .join__cta {
    transition: none;
  }
  .next-event__slide, .next-event__image, .next-event__video { transition: none; }
  .next-event__progress-step::after { transform: scaleX(1); animation: none; }
  .gallery__track { animation: none; }
  .hero__scroll-arrow { animation: none; }
}
