:root {
  color-scheme: light;
  --green: #003c20;
  --green-deep: #002814;
  --green-bright: #087440;
  --paper: #e7e4dd;
  --paper-light: #f7f5ef;
  --ink: #151815;
  --muted: #5d625c;
  --line: rgba(0, 60, 32, 0.24);
  --signal: #f4ce46;
  --white: #ffffff;
  --shell: 1200px;
  --radius: 6px;
  font-family: Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.55;
}

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

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--signal);
  outline-offset: 4px;
}

.shell {
  width: min(var(--shell), calc(100% - 40px));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: -60px;
  z-index: 100;
  background: var(--signal);
  color: var(--ink);
  padding: 12px 16px;
  font-weight: 800;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: 72px;
  border-bottom: 1px solid rgba(231, 228, 221, 0.2);
  background: var(--green);
  color: var(--paper-light);
}

.nav {
  min-height: 72px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
}

.wordmark {
  width: max-content;
  display: flex;
  align-items: baseline;
  gap: 5px;
  text-decoration: none;
  text-transform: uppercase;
  line-height: 1;
}

.wordmark span {
  font-size: 0.68rem;
  font-weight: 800;
}

.wordmark strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.62rem;
  font-style: italic;
  font-weight: 500;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-links a,
.nav-instagram {
  position: relative;
  text-decoration: none;
  font-size: 0.79rem;
  font-weight: 800;
  text-transform: uppercase;
}

.nav-links a::after,
.nav-instagram::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -7px;
  height: 2px;
  background: var(--signal);
  transition: right 180ms ease;
}

.nav-links a:hover::after,
.nav-instagram:hover::after {
  right: 0;
}

.nav-instagram {
  justify-self: end;
}

.hero {
  position: relative;
  min-height: clamp(540px, calc(100svh - 128px), 760px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--green-deep);
  color: var(--white);
}

.hero-image,
.hero-wash {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center 42%;
  transform: scale(1.01);
  animation: settle 1.2s ease-out both;
}

.hero-wash {
  background: rgba(0, 34, 17, 0.58);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-block: 78px 76px;
}

.kicker {
  margin: 0 0 20px;
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 920px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4.4rem, 11vw, 9.8rem);
  font-style: italic;
  font-weight: 500;
  line-height: 0.77;
  text-wrap: balance;
}

.hero h1 span {
  display: block;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.34em;
  font-style: normal;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.hero-copy {
  max-width: 600px;
  margin: 32px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
}

.hero-actions,
.event-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 13px 19px;
  text-align: center;
  text-decoration: none;
  font-size: 0.86rem;
  font-weight: 900;
  text-transform: uppercase;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-light {
  background: var(--paper-light);
  color: var(--green);
}

.button-light:hover {
  background: var(--signal);
}

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

.button-dark:hover {
  background: var(--green-bright);
}

.button-signal {
  background: var(--signal);
  color: var(--green-deep);
}

.button-signal:hover {
  background: var(--white);
}

.text-link {
  width: max-content;
  border-bottom: 1px solid currentColor;
  padding-bottom: 3px;
  text-decoration: none;
  font-size: 0.87rem;
  font-weight: 900;
  text-transform: uppercase;
}

.light-link {
  color: var(--white);
}

.event-ticker {
  min-height: 56px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  padding: 12px max(20px, calc((100vw - var(--shell)) / 2));
  background: var(--signal);
  color: var(--green-deep);
  font-size: 0.8rem;
  text-transform: uppercase;
}

.event-ticker span,
.event-ticker a {
  font-weight: 900;
}

.event-ticker strong {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.section {
  padding-block: 106px;
}

.event-section {
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr);
  gap: 54px;
}

.section-label {
  padding-top: 4px;
}

.section-label span {
  display: block;
  width: 54px;
  height: 54px;
  border: 1px solid var(--green);
  border-radius: 50%;
  padding-top: 16px;
  text-align: center;
  font-size: 0.75rem;
  font-weight: 900;
}

.section-label p {
  margin: 18px 0 0;
  font-size: 0.68rem;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.event-stage {
  min-height: 620px;
}

.event-stage:has(.loading-message) {
  display: grid;
  place-items: center;
}

.event-stage > .loading-message {
  color: var(--muted);
}

.event-stage:has(.event-visual) {
  display: grid;
  grid-template-columns: minmax(300px, 0.7fr) minmax(400px, 1fr);
  gap: clamp(44px, 7vw, 100px);
  align-items: center;
}

.event-visual {
  position: relative;
  justify-self: center;
  width: min(100%, 430px);
}

.event-visual img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border: 1px solid var(--green);
  box-shadow: 18px 18px 0 var(--green);
}

.event-date {
  position: absolute;
  right: -24px;
  top: -24px;
  width: 92px;
  aspect-ratio: 1;
  display: grid;
  place-content: center;
  border-radius: 50%;
  background: var(--signal);
  color: var(--green-deep);
  text-align: center;
  text-transform: uppercase;
  transform: rotate(8deg);
}

.event-date span {
  font-size: 0.72rem;
  font-weight: 900;
}

.event-date strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  line-height: 1;
}

.event-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 26px;
}

.event-tags span {
  border: 1px solid var(--green);
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
}

.event-number {
  margin: 0 0 8px;
  color: var(--green-bright);
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.event-details h2,
.empty-event h2 {
  margin: 0;
  color: var(--green);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.3rem, 7vw, 6.4rem);
  font-style: italic;
  font-weight: 500;
  line-height: 0.92;
}

.event-summary {
  max-width: 640px;
  margin: 28px 0 0;
  color: #353a35;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.22rem;
}

.event-facts {
  margin: 32px 0 0;
  border-top: 1px solid var(--line);
}

.event-facts div {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 18px;
  border-bottom: 1px solid var(--line);
  padding: 14px 0;
}

.event-facts dt {
  color: var(--muted);
  font-size: 0.71rem;
  font-weight: 900;
  text-transform: uppercase;
}

.event-facts dd {
  margin: 0;
  font-weight: 800;
}

.event-facts dd span {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 400;
}

.event-notes {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.event-notes li {
  position: relative;
  margin-top: 7px;
  padding-left: 20px;
  color: #3e443e;
  font-size: 0.92rem;
}

.event-notes li::before {
  content: "+";
  position: absolute;
  left: 0;
  color: var(--green-bright);
  font-weight: 900;
}

.empty-event {
  min-height: 480px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  border-block: 1px solid var(--line);
}

.empty-event p:not(.event-number) {
  max-width: 520px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.2rem;
}

.manifesto {
  background: var(--green);
  color: var(--paper-light);
}

.manifesto-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  gap: 80px;
  padding-block: 112px;
}

.manifesto-inner > .kicker {
  grid-column: 1 / -1;
  margin-bottom: -36px;
}

.manifesto h2,
.recap h2,
.how-heading h2,
.closing h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1;
}

.manifesto h2 {
  max-width: 780px;
  font-size: clamp(3.1rem, 7vw, 6.5rem);
  font-style: italic;
}

.manifesto-copy {
  align-self: end;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.05rem;
}

.manifesto-copy p {
  margin: 0;
}

.manifesto-copy p + p {
  margin-top: 22px;
}

.dark-kicker {
  color: var(--green-bright);
}

.activity-section {
  overflow: hidden;
  border-bottom: 1px solid var(--green);
  background: var(--paper-light);
  color: var(--green);
}

.activity-track {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 24px 0;
  animation: drift 35s linear infinite alternate;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 5vw, 4.3rem);
  font-style: italic;
  white-space: nowrap;
}

.activity-track b {
  color: var(--signal);
  -webkit-text-stroke: 1px var(--green);
}

.recap {
  display: grid;
  grid-template-columns: minmax(280px, 0.67fr) minmax(0, 1.33fr);
  gap: clamp(50px, 8vw, 110px);
  align-items: start;
}

.recap-heading {
  position: sticky;
  top: 114px;
}

.recap h2 {
  color: var(--green);
  font-size: clamp(2.8rem, 5.3vw, 5.1rem);
  font-style: italic;
}

.recap-heading > p:not(.kicker) {
  margin: 28px 0;
  color: var(--muted);
  font-size: 1rem;
}

.photo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.photo {
  position: relative;
  overflow: hidden;
  min-height: 300px;
  background: var(--green);
}

.photo-wide {
  grid-column: 1 / -1;
  min-height: 390px;
}

.photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 350ms ease, opacity 350ms ease;
}

.photo:hover img {
  opacity: 0.86;
  transform: scale(1.025);
}

.how-it-works {
  border-block: 1px solid var(--line);
  background: var(--paper-light);
}

.how-it-works .section {
  display: grid;
  grid-template-columns: 0.55fr 1.45fr;
  gap: 70px;
}

.how-heading h2 {
  color: var(--green);
  font-size: clamp(3.5rem, 6vw, 6rem);
  font-style: italic;
}

.steps {
  margin: 0;
  padding: 0;
  list-style: none;
}

.steps li {
  display: grid;
  grid-template-columns: 64px 0.7fr 1fr;
  gap: 20px;
  align-items: baseline;
  border-top: 1px solid var(--line);
  padding: 25px 0;
}

.steps li:last-child {
  border-bottom: 1px solid var(--line);
}

.steps span {
  color: var(--green-bright);
  font-size: 0.72rem;
  font-weight: 900;
}

.steps strong {
  color: var(--green);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
}

.steps p {
  margin: 0;
  color: var(--muted);
}

.closing {
  background: var(--green);
  color: var(--white);
}

.closing-inner {
  display: grid;
  grid-template-columns: minmax(230px, 380px) minmax(0, 1fr);
  gap: clamp(48px, 9vw, 130px);
  align-items: center;
  padding-block: 100px;
}

.closing img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.24);
}

.closing h2 {
  max-width: 720px;
  font-size: clamp(3.2rem, 7vw, 7rem);
  font-style: italic;
}

.closing .button {
  margin-top: 34px;
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  background: var(--green-deep);
  color: var(--paper-light);
}

.error-page {
  min-height: 100svh;
  display: grid;
  place-items: center;
  background: var(--green);
  color: var(--white);
}

.error-page .shell {
  padding-block: 70px;
}

.error-page h1 {
  max-width: 900px;
  margin: 0 0 36px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.5rem, 9vw, 8rem);
  font-style: italic;
  font-weight: 500;
  line-height: 0.95;
}

.footer-inner {
  min-height: 150px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}

.footer-brand {
  display: grid;
}

.footer-brand strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
  font-style: italic;
}

.footer-brand span,
.footer-inner > p,
.footer-links {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.75rem;
  text-transform: uppercase;
}

.footer-links {
  justify-self: end;
  display: flex;
  gap: 22px;
}

.footer-links a {
  text-decoration: none;
}

@keyframes settle {
  from { opacity: 0.5; transform: scale(1.06); }
  to { opacity: 1; transform: scale(1.01); }
}

@keyframes drift {
  from { transform: translateX(0); }
  to { transform: translateX(-20%); }
}

@media (max-width: 900px) {
  .nav {
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    display: none;
  }

  .event-section {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .section-label {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .section-label p {
    margin: 0;
    writing-mode: initial;
  }

  .event-stage:has(.event-visual) {
    grid-template-columns: minmax(260px, 0.7fr) minmax(340px, 1fr);
    gap: 45px;
  }

  .manifesto-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .manifesto-inner > .kicker {
    margin-bottom: -8px;
  }

  .manifesto-copy {
    max-width: 620px;
  }

  .recap,
  .how-it-works .section {
    grid-template-columns: 1fr;
  }

  .recap-heading {
    position: static;
    max-width: 650px;
  }
}

@media (max-width: 680px) {
  .shell {
    width: min(100% - 30px, var(--shell));
  }

  .site-header,
  .nav {
    min-height: 64px;
  }

  .wordmark span {
    display: none;
  }

  .wordmark strong {
    font-size: 1.35rem;
  }

  .nav-instagram {
    font-size: 0.72rem;
  }

  .hero {
    min-height: calc(100svh - 116px);
  }

  .hero-image {
    object-position: 57% center;
  }

  .hero-wash {
    background: rgba(0, 34, 17, 0.64);
  }

  .hero-content {
    padding-block: 56px;
  }

  .hero h1 {
    font-size: clamp(4rem, 23vw, 6.2rem);
  }

  .hero-copy {
    font-size: 1.08rem;
  }

  .hero-actions,
  .event-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .event-ticker {
    min-height: 52px;
    grid-template-columns: auto 1fr;
    gap: 12px;
    padding-inline: 15px;
    font-size: 0.68rem;
  }

  .event-ticker a {
    display: none;
  }

  .section {
    padding-block: 78px;
  }

  .event-stage {
    min-height: 0;
  }

  .event-stage:has(.event-visual) {
    grid-template-columns: 1fr;
    gap: 66px;
  }

  .event-visual {
    width: min(calc(100% - 22px), 400px);
    justify-self: start;
  }

  .event-visual img {
    box-shadow: 12px 12px 0 var(--green);
  }

  .event-date {
    right: -15px;
    top: -20px;
    width: 78px;
  }

  .event-details h2,
  .empty-event h2 {
    font-size: clamp(3rem, 17vw, 4.8rem);
  }

  .event-facts div {
    grid-template-columns: 70px 1fr;
  }

  .manifesto-inner {
    padding-block: 82px;
  }

  .manifesto h2 {
    font-size: clamp(2.8rem, 14vw, 4.5rem);
  }

  .recap h2 {
    font-size: clamp(2.8rem, 14vw, 4.2rem);
  }

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

  .photo,
  .photo-wide {
    grid-column: auto;
    min-height: 290px;
  }

  .photo-wide:first-child {
    min-height: 360px;
  }

  .how-it-works .section {
    gap: 45px;
  }

  .steps li {
    grid-template-columns: 40px 1fr;
    gap: 8px 14px;
  }

  .steps p {
    grid-column: 2;
  }

  .closing-inner {
    grid-template-columns: 1fr;
    padding-block: 78px;
  }

  .closing img {
    width: min(76vw, 330px);
  }

  .closing h2 {
    font-size: clamp(3rem, 15vw, 4.8rem);
  }

  .footer-inner {
    grid-template-columns: 1fr auto;
    padding-block: 30px;
  }

  .footer-inner > p {
    display: none;
  }

  .footer-links {
    flex-direction: column;
    gap: 6px;
    text-align: right;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
