@font-face {
  font-family: "HelveticaBlack";
  src: url("/assets/fonts/helvetica-black.otf");
}
@font-face {
  font-family: "HelveticaMedium";
  src: url("/assets/fonts/helvetica-md.otf");
}
@font-face {
  font-family: "HelveticaBold";
  src: url("/assets/fonts/helvetica-bold.otf");
}
:root {
  --font-size: 20px;
  --font-size-lg: 12vmin;
  --space-sm: 0.5rlh;
  --space-md: 3rlh;
  --space-lg: calc(var(--font-size-lg) * 3);
  --max-width: 600px;
  --inactive-color: hsl(0,0%,0%);
  --active-color: black;
  --image-opacity: 1;
}
@media screen and (max-width: 1200px) {
  :root {
    --font-size-lg: 10vmin;
  }
}
@media screen and (max-width: 600px) {
  :root {
    --font-size: 18px;
    --font-size-lg: 9vmin;
    --space-sm: 0.5rlh;
    --space-md: 1rlh;
  }
}

* {
  box-sizing: border-box;
}

html {
  font-family: "Helveticabold", sans-serif;
  font-size: var(--font-size);
  color: var(--inactive-color);
  line-height: 1.2;
}

body {
  margin: 0;
  position: relative;
}

h1, h2, h3 {
  margin: 0;
  font-weight: inherit;
  font-size: inherit;
}

p {
  margin: 0;
}

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

figure {
  margin: 0;
  padding: 0;
}

img {
  width: 100%;
  opacity: var(--image-opacity);
}

ul, ol {
  margin: 0;
  padding: 0;
}

li {
  list-style: none;
}

dl {
  margin: 0;
}

dt, dd {
  margin: 0;
}

details > summary {
  list-style: none;
}

details > summary::-webkit-details-marker {
  display: none;
}

dissolve-element {
  display: block;
  position: relative;
  filter: invert(1) brightness(65%);
}
dissolve-element canvas {
  width: 100%;
  height: auto;
  image-rendering: crisp-edges;
  display: block;
}

smudge-machine {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 4;
  filter: invert(1) brightness(65%);
  pointer-events: none;
}
smudge-machine smudge-tile {
  display: block;
  position: absolute;
  overflow: hidden;
}
smudge-machine smudge-canvas {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
smudge-machine smudge-canvas canvas {
  display: block;
  width: 100%;
  height: 100%;
  image-rendering: crisp-edges;
}
smudge-machine smudge-image {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
smudge-machine smudge-image img {
  display: block;
  width: 100%;
  height: 100%;
  image-rendering: crisp-edges;
}

.Header {
  top: 0;
  width: 100%;
  font-size: var(--font-size-lg);
  line-height: 0.8;
  pointer-events: none;
  font-family: "HelveticaBlack";
  text-align: center;
}
.Header--home, .Header--overlay {
  height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  top: 0;
  left: 0;
  position: sticky;
  z-index: 2;
}
.Header--overlay {
  position: fixed;
}
.Header--page {
  position: sticky;
}
.Header--page dissolve-element {
  filter: invert(1) brightness(0%);
}

.Header-title {
  pointer-events: none;
}

.Header-subtitle {
  pointer-events: none;
}

hamburger-nav.is-visible .Nav {
  opacity: 1;
  pointer-events: all;
}

.Nav {
  color: hsl(0, 0%, 65%);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-size: var(--font-size-lg);
  font-family: "HelveticaBlack";
  text-transform: uppercase;
  line-height: 0.75;
  padding: var(--space-sm);
  text-align: center;
  opacity: 0;
  z-index: 1;
  pointer-events: none;
  background-color: white;
}

.Nav-link {
  display: block;
}
.Nav-link:hover {
  color: black;
}
.Nav-link span {
  vertical-align: text-bottom;
}

.NavToggle {
  position: fixed;
  top: 0;
  right: 0;
  cursor: pointer;
  pointer-events: all;
  z-index: 2;
  font-size: var(--font-size-lg);
  line-height: 0.8;
}

.Main {
  padding: var(--space-sm);
}

.Schedule-header {
  font-family: "HelveticaBlack";
  font-size: var(--font-size-lg);
  text-transform: uppercase;
  text-align: center;
  top: 0;
  line-height: 0.85;
  position: sticky;
  pointer-events: none;
}
.Schedule-header h2 {
  vertical-align: text-bottom;
  display: inline-block;
}
.Schedule-header dissolve-element {
  filter: invert(1) brightness(0%);
}

.Schedule-body {
  display: grid;
  gap: var(--space-md);
  padding: var(--space-lg) 0;
  max-width: var(--max-width);
  margin: auto;
}

.Event {
  display: grid;
}
.Event:hover {
  color: var(--active-color);
}
@media screen and (max-width: 600px) {
  .Event {
    grid-template-columns: 1fr;
  }
  .Event .Event-details {
    grid-column: 1/2 !important;
  }
}

.Event-details[open] {
  color: var(--active-color);
}

.Event-meta {
  display: grid;
  gap: var(--space-sm);
}

.Event-summary {
  display: grid;
  cursor: pointer;
  user-select: none;
}

[data-day=Ongoing] .Event-summary {
  grid-template-columns: 1fr;
}

.Event-title {
  text-decoration: underline;
  text-decoration-style: dotted;
  text-decoration-thickness: 2px;
}

.Event-body {
  margin: var(--space-sm) 0;
  display: grid;
  gap: var(--space-sm);
}

.Content {
  color: var(--active-color);
  max-width: var(--max-width);
  margin: auto;
}
.Content--intro {
  text-align: center;
  padding: var(--space-lg) 0;
  margin: auto;
  color: var(--inactive-color);
}
.Content--footer {
  max-width: unset;
  padding: var(--space-sm);
}
.Content h2, .Content h3 {
  text-transform: uppercase;
}

.Section {
  margin-top: var(--space-lg);
}
.Section--convo .Section-preface {
  margin-bottom: var(--space-sm);
}

.Section-profile {
  margin-top: var(--space-md);
}

.Section-convoItem {
  display: grid;
  grid-template-columns: 10ch 1fr;
}

.u-bodyText p {
  margin: var(--space-sm) 0;
  word-break: break-word;
}
.u-bodyText p:first-child {
  margin-top: 0;
}
.u-bodyText p:last-child {
  margin-bottom: 0;
}
.u-bodyText a {
  text-decoration: underline;
  text-decoration-style: dotted;
  text-decoration-thickness: 2px;
}

/*# sourceMappingURL=main.css.map */
