:root {
  --black: #000;
  --ink: #2c2a26;
  --cream: #cbbfb3;
  --muted: #dacfc3;
  --gold: #a98349;
  --nav-tan: hsl(30 18.75% 74.9%);
  --paper: #f0e9dd;
}

@font-face {
  font-family: "New Spirit Condensed";
  src: url("assets/fonts/new-spirit-condensed-400.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 400;
}

@font-face {
  font-family: "new-spirit-condensed";
  src: url("assets/fonts/new-spirit-condensed-400.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 400;
}

@font-face {
  font-family: "New Spirit Condensed";
  src: url("assets/fonts/new-spirit-condensed-500.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 500;
}

@font-face {
  font-family: "new-spirit-condensed";
  src: url("assets/fonts/new-spirit-condensed-500.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 500;
}

@font-face {
  font-family: "New Spirit Condensed";
  src: url("assets/fonts/new-spirit-condensed-700.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 700;
}

@font-face {
  font-family: "new-spirit-condensed";
  src: url("assets/fonts/new-spirit-condensed-700.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 700;
}

@font-face {
  font-family: Inter;
  src: url("assets/fonts/inter-variable.ttf") format("truetype");
  font-display: swap;
  font-style: normal;
  font-weight: 100 900;
}

@font-face {
  font-family: inter;
  src: url("assets/fonts/inter-variable.ttf") format("truetype");
  font-display: swap;
  font-style: normal;
  font-weight: 100 900;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--black);
  font-family: Poppins, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
}

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

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

p {
  margin: 0 0 1.25rem;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 500;
  line-height: 0.98;
}

h1 {
  max-width: 10ch;
  color: var(--cream);
  font-size: clamp(4.5rem, 12vw, 14rem);
}

h2 {
  color: var(--ink);
  font-size: clamp(3rem, 7.4vw, 9rem);
}

h3 {
  font-size: clamp(2.2rem, 4vw, 4.5rem);
}

.site-header {
  position: fixed;
  z-index: 30;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1vw 4vw;
  color: #fff;
  transform: translateY(0);
  transition: transform 260ms ease, background 220ms ease, color 220ms ease;
  will-change: transform;
}

.site-header.is-solid {
  background: transparent;
}

.site-header.is-hidden {
  transform: translateY(-105%);
}

.brand img {
  width: clamp(104px, 12vw, 170px);
}

.site-nav {
  display: flex;
  gap: clamp(1.2rem, 3vw, 3.2rem);
  align-items: center;
  color: var(--nav-tan);
  font-family: "New Spirit Condensed", Georgia, serif;
  font-size: clamp(1.08rem, 1.2vw, 1.2rem);
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.8;
  text-transform: none;
}

.site-nav a {
  position: relative;
  color: inherit;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0.16em;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  width: 38px;
  padding: 0;
  border: 0;
  background: transparent;
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 7px 0;
  background: currentColor;
}

.hero {
  position: relative;
  height: calc(500vh + 100px);
  padding-top: 100px;
  background: #000;
}

.hero-canvas {
  position: sticky;
  top: 0;
  width: 100%;
  height: 100vh;
  object-fit: contain;
  background: #000;
}

.hero-mobile {
  display: none;
}

.dark-section {
  color: var(--muted);
  background: #000;
}

.teaser-video {
  width: 100%;
  padding: 0;
}

.teaser-video video {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #000;
}

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

.section-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 6vw;
  width: min(100%, 1600px);
  margin: 0;
  padding: 10vw 5vw;
}

.eyebrow {
  margin-bottom: 1.5rem;
  color: var(--gold);
  font-size: 1.05rem;
  font-weight: 700;
  text-transform: uppercase;
}

.image-band {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

.band-image {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  opacity: 0.62;
}

.immersive .section-grid {
  min-height: 100vh;
  align-items: center;
}

.immersive-grid {
  grid-template-columns: minmax(0, 1fr) minmax(560px, 0.83fr);
  padding: clamp(9rem, 15vh, 13rem) 5vw 8vw;
}

.immersive-copy {
  grid-column: 2;
  align-self: center;
  width: min(100%, 760px);
}

.immersive .eyebrow {
  margin: 2rem 0;
  color: var(--gold);
  font-family: "new-spirit-condensed", serif;
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: calc(1.2em * (1 + (1 - 1.6) / 25));
  text-transform: none;
}

.immersive h2 {
  max-width: none;
  margin: 2rem 0;
  color: var(--cream);
  font-family: "new-spirit-condensed", serif;
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: calc(1.2em * (1 + (1 - 4) / 25));
  text-transform: none;
}

.immersive-body {
  max-width: 660px;
  color: var(--cream);
  font-family: inter, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0em;
  line-height: 1.6em;
  text-transform: none;
}

.immersive-body p {
  margin: 1rem 0;
}

@media screen and (max-width: 767px) and (orientation: portrait) {
  .immersive .eyebrow {
    font-size: calc((1.6 - 1) * calc(0.012 * min(100vh, 900px)) + 1rem);
  }

  .immersive h2,
  .process h2,
  .get-involved h2,
  .creators h2,
  .team h2 {
    font-size: calc((4 - 1) * calc(0.012 * min(100vh, 900px)) + 1rem);
  }

  .creators h2,
  .team h2 {
    font-size: calc((4 - 1) * calc(0.012 * min(100vh, 900px)) + 1rem);
  }

  .immersive-body {
    font-size: calc((1.1 - 1) * calc(0.012 * min(100vh, 900px)) + 1rem);
  }
}

@media screen and (min-width: 768px), screen and (max-width: calc(1920px - 1px)) and (orientation: landscape) {
  .immersive .eyebrow {
    font-size: calc((1.6 - 1) * 1.2vw + 1rem);
  }

  .immersive h2 {
    font-size: calc((4 - 1) * 1.2vw + 1rem);
  }

  .immersive-body {
    font-size: calc((1.1 - 1) * 1.2vw + 1rem);
  }
}

@media screen and (min-width: 1920px) {
  .immersive .eyebrow {
    font-size: calc(1.6 * 1rem);
  }

  .immersive h2 {
    font-size: calc(4 * 1rem);
  }

  .immersive-body {
    font-size: calc(1.1 * 1rem);
  }
}

.process-grid {
  grid-template-columns: minmax(0, 1.16fr) minmax(420px, 0.84fr);
  align-items: start;
  padding: clamp(7rem, 9vw, 10rem) 5vw clamp(5rem, 7vw, 8rem);
}

.process-heading {
  width: min(100%, 720px);
}

.process-body {
  align-self: start;
  width: min(100%, 560px);
  margin-top: clamp(3.25rem, 4.7vw, 5.8rem);
}

.process .eyebrow,
.get-involved .eyebrow,
.creators .eyebrow,
.team .eyebrow,
.festivals .eyebrow,
.partners .eyebrow,
.site-footer .eyebrow {
  margin: 2rem 0;
  color: var(--gold);
  font-family: "new-spirit-condensed", serif;
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: calc(1.2em * (1 + (1 - 1.6) / 25));
  text-transform: none;
}

.process h2,
.get-involved h2,
.creators h2,
.team h2 {
  max-width: none;
  margin: 2rem 0;
  color: var(--cream);
  font-family: "new-spirit-condensed", serif;
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: calc(1.2em * (1 + (1 - 4) / 25));
  text-transform: none;
}

.section-body {
  color: var(--cream);
  font-family: inter, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0em;
  line-height: 1.6em;
  text-transform: none;
}

.section-body p {
  margin: 1rem 0;
}

@media screen and (max-width: 767px) and (orientation: portrait) {
  .process .eyebrow,
  .get-involved .eyebrow,
  .creators .eyebrow,
  .team .eyebrow,
  .festivals .eyebrow,
  .partners .eyebrow,
  .site-footer .eyebrow {
    font-size: calc((1.6 - 1) * calc(0.012 * min(100vh, 900px)) + 1rem);
  }

  .process h2,
  .get-involved h2,
  .creators h2,
  .team h2 {
    font-size: calc((4 - 1) * calc(0.012 * min(100vh, 900px)) + 1rem);
  }

  .section-body {
    font-size: calc((1.1 - 1) * calc(0.012 * min(100vh, 900px)) + 1rem);
  }

  .creator-copy,
  .festival-grid,
  .location-grid,
  .footer-copy {
    font-size: calc((1 - 1) * calc(0.012 * min(100vh, 900px)) + 1rem);
  }

  .credits {
    font-size: calc((1 - 1) * calc(0.012 * min(100vh, 900px)) + 1rem);
  }

  .team-intro {
    font-size: calc((1.6 - 1) * calc(0.012 * min(100vh, 900px)) + 1rem);
  }
}

@media screen and (min-width: 768px), screen and (max-width: calc(1920px - 1px)) and (orientation: landscape) {
  .process .eyebrow,
  .get-involved .eyebrow,
  .creators .eyebrow,
  .team .eyebrow,
  .festivals .eyebrow,
  .partners .eyebrow,
  .site-footer .eyebrow {
    font-size: calc((1.6 - 1) * 1.2vw + 1rem);
  }

  .process h2,
  .get-involved h2,
  .creators h2,
  .team h2 {
    font-size: calc((4 - 1) * 1.2vw + 1rem);
  }

  .section-body {
    font-size: calc((1.1 - 1) * 1.2vw + 1rem);
  }

  .creator-copy,
  .festival-grid,
  .location-grid,
  .footer-copy {
    font-size: calc((1 - 1) * 1.2vw + 1rem);
  }

  .credits {
    font-size: calc((1 - 1) * 1.2vw + 1rem);
  }
}

@media screen and (min-width: 1920px) {
  .process .eyebrow,
  .get-involved .eyebrow,
  .creators .eyebrow,
  .team .eyebrow,
  .festivals .eyebrow,
  .partners .eyebrow,
  .site-footer .eyebrow {
    font-size: calc(1.6 * 1rem);
  }

  .process h2,
  .get-involved h2,
  .creators h2,
  .team h2 {
    font-size: calc(4 * 1rem);
  }

  .section-body {
    font-size: calc(1.1 * 1rem);
  }

  .creator-copy,
  .festival-grid,
  .location-grid,
  .footer-copy {
    font-size: calc(1 * 1rem);
  }

  .credits {
    font-size: calc(1 * 1rem);
  }
}

.gallery {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 88vh;
  overflow: hidden;
  padding-bottom: 8vw;
}

.gallery-track {
  display: flex;
  align-items: center;
  gap: 0;
  width: 100%;
  transition: transform 320ms ease;
  will-change: transform;
}

.gallery-track img {
  flex: 0 0 min(72vw, 80vh);
  width: min(72vw, 80vh);
  height: min(72vw, 80vh);
  object-fit: cover;
  opacity: 0.45;
  transition: opacity 320ms ease;
}

.gallery-track img.is-active {
  opacity: 1;
}

.gallery-button {
  position: absolute;
  z-index: 4;
  top: calc(50% - 4vw);
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  padding: 0;
  border: 1px solid rgba(218, 207, 195, 0.6);
  border-radius: 50%;
  color: var(--muted);
  background: rgba(0, 0, 0, 0.45);
  font-size: 0;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
}

.gallery-button::before {
  color: var(--muted);
  font-size: 1.5rem;
  line-height: 1;
  transform: translateY(0.1em);
}

.gallery-prev {
  left: 3vw;
}

.gallery-prev::before {
  content: "←";
}

.gallery-next {
  right: 3vw;
}

.gallery-next::before {
  content: "→";
}

.get-involved {
  min-height: 100vh;
}

.get-involved::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: rgba(0, 0, 0, 0.15);
  content: "";
}

.get-involved .band-image {
  background-position: 25.5% 0%;
  opacity: 1;
}

.get-involved-grid {
  grid-template-columns: minmax(0, 1.35fr) minmax(520px, 0.65fr);
  min-height: 100vh;
  align-items: center;
  padding: clamp(7rem, 9vw, 10rem) 5vw clamp(5rem, 7vw, 8rem);
}

.get-involved-copy {
  grid-column: 2;
  width: min(100%, 780px);
}

.get-involved .section-body {
  width: min(100%, 560px);
  margin-top: clamp(1.5rem, 2.4vw, 3rem);
}

.get-involved .donate-button-wrap {
  display: flex;
  justify-content: flex-start;
  width: min(100%, 560px);
  margin-top: 1.6rem;
}

.get-involved .donate-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.72rem 1.7rem;
  overflow: hidden;
  border: 1px solid #a98349;
  border-radius: 0.4rem;
  color: #000;
  background-color: #a98349;
  font-family: "new-spirit-condensed", serif;
  font-size: 1rem;
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.2em;
  text-decoration: none;
  text-transform: none;
  transition:
    color 600ms cubic-bezier(0.19, 1, 0.22, 1),
    background-color 600ms cubic-bezier(0.19, 1, 0.22, 1);
}

.get-involved .donate-button:hover,
.get-involved .donate-button:focus-visible {
  color: #a98349;
  background-color: #000;
}

.creators {
  padding: clamp(6rem, 8vw, 9rem) 0 0;
}

.creators-grid {
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(2rem, 4vw, 4rem);
  padding: 0 5vw clamp(2.5rem, 3.5vw, 4rem);
}

.creators-heading {
  grid-column: 1 / span 9;
  width: min(100%, 880px);
}

.creators h2,
.team h2 {
  color: #000;
}

.creator-cards {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(4rem, 7vw, 8rem);
  width: min(100%, 1280px);
}

.creator-cards article {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(180px, 0.95fr);
  gap: clamp(1.25rem, 2.2vw, 2.6rem);
  align-items: start;
}

.creator-cards img {
  width: min(100%, 280px);
  margin: 0;
}

.creator-copy,
.credits,
.festival-grid,
.location-grid,
.footer-copy {
  font-family: inter, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0em;
  line-height: 1.6em;
  text-transform: none;
}

.creator-copy {
  color: #000;
}

.team,
.partners {
  padding: clamp(2.5rem, 4vw, 4.5rem) 5vw;
}

.festivals {
  padding: clamp(2.5rem, 4vw, 4.5rem) 5vw clamp(5rem, 8vw, 9rem);
}

.team-heading {
  width: min(100%, 920px);
  margin-bottom: clamp(2rem, 4vw, 5rem);
}

.team-intro {
  width: min(100%, 820px);
  margin: 2rem 0;
  color: #000;
  font-family: "new-spirit-condensed", serif;
  font-size: calc((1.6 - 1) * 1.2vw + 1rem);
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: calc(1.2em * (1 + (1 - 1.6) / 25));
  text-transform: none;
}

.credits {
  column-count: 4;
  column-gap: 4vw;
  color: #000;
}

.credits p {
  break-inside: avoid;
  margin: 0;
  margin-bottom: 1.6rem;
  font-size: 1rem;
  line-height: 1.45;
}

.credits strong {
  display: block;
  margin-bottom: 0.45rem;
}

.festival-grid {
  display: grid;
  grid-template-columns: minmax(160px, 0.7fr) minmax(320px, 2fr) minmax(240px, 1.2fr);
  gap: 0.4rem 3vw;
  max-width: 1360px;
}

.festival-grid p {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: subgrid;
  align-items: baseline;
  margin: 0;
  color: var(--ink);
  font-family: inter, "Helvetica Neue", Helvetica, Arial, sans-serif;
  line-height: 1.6em;
}

.festival-grid span,
.festival-grid strong,
.festival-grid em {
  display: block;
  color: var(--ink);
  font: inherit;
  font-style: normal;
  font-weight: 400;
}

.logo-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(90px, 1fr));
  gap: 3.4rem 4vw;
  align-items: center;
  max-width: 1500px;
  margin-top: 4vw;
}

.logo-grid img {
  max-height: 72px;
  margin: auto;
  object-fit: contain;
  filter: grayscale(1);
}

.location-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2rem;
  margin-top: 8vw;
  color: #000;
}

.location-grid p {
  font-size: calc((1.1 - 1) * 1.2vw + 1rem);
  line-height: 1.6em;
}

.site-footer {
  position: relative;
  overflow: hidden;
  color: var(--muted);
  background: #000;
}

.footer-background {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.15)), url("assets/images/mycelium-footer.png") center / cover;
  opacity: 0.9;
}

.footer-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 8vw;
  max-width: 1500px;
  min-height: 440px;
  margin: 0;
  padding: 9vw 5vw;
}

.site-footer .eyebrow {
  margin-top: 0;
}

.footer-copy {
  width: min(100%, 520px);
  color: var(--muted);
}

.signup-form label {
  display: block;
  margin-bottom: 0.6rem;
  font-size: 0.9rem;
  font-weight: 700;
}

.form-row {
  display: flex;
  gap: 0;
}

.signup-form input,
.signup-form button {
  min-height: 58px;
  border: 0;
  font-family: inherit;
}

.signup-form input {
  flex: 1;
  padding: 0 1rem;
  background: #fff;
}

.signup-form button {
  padding: 0 2rem;
  color: #fff;
  background: var(--gold);
  font-weight: 700;
  cursor: pointer;
}

.signup-form p {
  margin-top: 1rem;
  font-size: 0.78rem;
}

.socials {
  display: flex;
  gap: 0.4rem;
  align-items: center;
}

.socials a {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
}

.socials img {
  width: 64px;
  height: 64px;
}

@media (max-width: 900px) {
  .site-header {
    padding: 5vw;
  }

  .menu-toggle {
    display: block;
    color: currentColor;
  }

  .site-nav {
    position: fixed;
    inset: 0;
    display: grid;
    place-content: center;
    gap: 2rem;
    color: var(--paper);
    background: rgba(0, 0, 0, 0.96);
    font-size: 1.3rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
  }

  .section-grid,
  .footer-grid,
  .creator-cards,
  .location-grid {
    grid-template-columns: 1fr;
  }

  .process-grid,
  .get-involved-grid,
  .creators-grid {
    grid-template-columns: 1fr;
  }

  .process-body {
    width: min(100%, 680px);
    margin-top: 0;
  }

  .get-involved-copy {
    grid-column: 1;
    width: min(100%, 680px);
    margin-left: 0;
  }

  .creators-heading,
  .creator-cards {
    grid-column: 1;
  }

  .creator-cards,
  .festival-grid,
  .location-grid {
    grid-template-columns: 1fr;
  }

  .credits {
    column-count: 2;
  }

  .creator-cards article {
    grid-template-columns: minmax(0, 1fr);
  }

  .creator-cards img {
    width: min(100%, 320px);
  }

  .festival-grid p {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    margin-bottom: 1.2rem;
  }

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

  .immersive-copy {
    grid-column: 1;
    width: min(100%, 680px);
    margin-left: 0;
  }

  .hero {
    height: auto;
    min-height: 100vh;
    display: grid;
    place-items: center;
  }

  .hero-canvas {
    display: none;
  }

  .hero-mobile {
    display: block;
    width: min(75vw, 520px);
  }

  .logo-grid {
    grid-template-columns: repeat(3, minmax(80px, 1fr));
  }
}

@media (max-width: 620px) {
  h1 {
    font-size: 4.4rem;
  }

  h2 {
    font-size: 3rem;
  }

  .immersive h2 {
    font-size: calc((4 - 1) * calc(0.012 * min(100vh, 900px)) + 1rem);
  }

  .section-grid,
  .team,
  .festivals,
  .partners {
    padding: 18vw 6vw;
  }

  .creators-grid {
    padding-bottom: 9vw;
  }

  .team,
  .partners {
    padding-top: 9vw;
    padding-bottom: 9vw;
  }

  .festivals {
    padding-top: 9vw;
    padding-bottom: 18vw;
  }

  .festival-grid,
  .logo-grid {
    grid-template-columns: 1fr;
  }

  .credits {
    column-count: 1;
  }

  .form-row {
    display: grid;
  }
}
