html.hw-root {
  scroll-snap-type: y mandatory;
}

body.hw,
body.hw *,
body.hw *::before,
body.hw *::after {
  box-sizing: border-box;
}

body.hw {
  margin: 0;
  background: #0a0a0a;
  color: #fff;
  font-family: "Newsreader", "Georgia", "Times New Roman", serif;
  font-size: 1.0625rem;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: transparent;
}
body.hw a {
  color: inherit;
}
body.hw main {
  padding: 0;
}

.hw-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 1rem 0 0.5rem;
  pointer-events: none;
}
.hw-header a {
  pointer-events: auto;
  color: #fff;
  text-decoration: none;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.7);
  transition: color 0.15s ease;
}
.hw-header a:hover {
  color: #ef4444;
}

.hw-header-main {
  max-width: 45em;
  margin: 0 auto;
  padding: 0 1.25rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: baseline;
  row-gap: 0.5rem;
  column-gap: 1.5rem;
}

.hw-brand {
  font-size: 1.875rem;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.01em;
}
@media (max-width: 640px) {
  .hw-brand {
    font-size: 1.375rem;
  }
}

.hw-nav {
  display: flex;
  gap: 1rem;
  font-size: 19px;
}
@media (max-width: 640px) {
  .hw-nav {
    font-size: 17px;
    gap: 0.75rem;
  }
}
.hw-nav a[aria-current=page] {
  text-decoration: underline;
  text-underline-offset: 0.3em;
}

.hw-header-icons {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  display: flex;
  gap: 0.75rem;
}
.hw-header-icons .hw-icon {
  display: inline-flex;
  width: 1.1rem;
  height: 1.1rem;
  filter: drop-shadow(0 1px 4px rgba(0, 0, 0, 0.7));
}
.hw-header-icons .hw-icon svg {
  width: 100%;
  height: 100%;
}
@media (max-width: 640px) {
  .hw-header-icons {
    position: static;
    justify-content: center;
    padding-top: 0.5rem;
  }
}

.hw-cover {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 100svh;
  padding: 0 1.5rem 2.5rem;
  overflow: hidden;
  color: #fff;
  background: #0a0a0a;
  scroll-snap-align: start;
}
@media (min-width: 640px) {
  .hw-cover {
    padding: 0 2.5rem 3.5rem;
  }
}
@media (min-width: 768px) {
  .hw-cover {
    padding: 0 3.5rem 4rem;
  }
}

.hw-cover-bg {
  position: absolute;
  inset: 0;
  background-color: #0a0a0a;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hw-cover-scrim {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse, rgba(0, 0, 0, 0.62) 12%, rgba(0, 0, 0, 0.92) 38%);
}

.hw-cover-content {
  position: relative;
  max-width: 44rem;
}

.hw-cover-title {
  font-family: "Newsreader", "Georgia", "Times New Roman", serif;
  font-weight: 500;
  font-size: clamp(3.5rem, 12vw, 8rem);
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin: 0;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.6);
}

.hw-cover-bio {
  font-size: clamp(1rem, 1.7vw, 1.1875rem);
  line-height: 1.375;
  margin: 1.25rem 0 0;
  max-width: 40rem;
  color: rgba(255, 255, 255, 0.8);
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.75);
}
.hw-cover-bio p {
  margin: 0;
}
.hw-cover-bio p + p {
  margin-top: 0.75rem;
}
.hw-cover-bio a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
}
.hw-cover-bio a:hover {
  border-bottom-color: currentColor;
}

.hw-hallway {
  display: block;
}

.hw-slide {
  display: block;
  position: relative;
  height: 100vh;
  height: 100dvh;
  overflow: hidden;
  color: #fff;
  text-decoration: none;
  background: #0a0a0a;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}
.hw-slide:focus-visible {
  outline: 3px solid #fff;
  outline-offset: -3px;
}

.hw-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hw-slide--contain .hw-media {
  object-fit: contain;
}
.hw-slide--contain .hw-media-backdrop {
  object-fit: cover;
  filter: blur(28px) brightness(0.55);
  transform: scale(1.1);
}

.hw-shade-bottom {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.2) 50%, transparent);
}

.hw-shade-top {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 12rem;
  pointer-events: none;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.35) 50%, transparent);
}

.hw-slide-content {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 1.5rem 2.5rem;
}
@media (min-width: 640px) {
  .hw-slide-content {
    padding: 0 2.5rem 3.5rem;
  }
}
@media (min-width: 768px) {
  .hw-slide-content {
    padding: 0 3.5rem 4rem;
  }
}

.hw-plate {
  max-width: 72rem;
}

.hw-meta {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  font-family: "Xanh Mono", ui-monospace, "SFMono-Regular", Menlo, monospace;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
}
.hw-meta .hw-meta-dot {
  opacity: 0.4;
}

.hw-title {
  margin: 0;
  font-family: "Newsreader", "Georgia", "Times New Roman", serif;
  font-weight: 500;
  font-size: clamp(2.5rem, 9vw, 6.5rem);
  line-height: 0.95;
  letter-spacing: -0.025em;
  text-wrap: balance;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.6);
}

.hw-desc {
  margin: 1rem 0 0;
  max-width: 36rem;
  font-size: 1rem;
  line-height: 1.375;
  color: rgba(255, 255, 255, 0.75);
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.75);
}
@media (min-width: 640px) {
  .hw-desc {
    font-size: 1.125rem;
  }
}
@media (min-width: 768px) {
  .hw-desc {
    font-size: 1.25rem;
  }
}

.hw-footer {
  scroll-snap-align: end;
  font-family: "Xanh Mono", ui-monospace, "SFMono-Regular", Menlo, monospace;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.75);
}

.hw-footer-inner {
  max-width: 45em;
  margin: 0 auto;
  padding: 2.5rem 1.25rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.hw-footer-inner a {
  text-decoration: none;
}
.hw-footer-inner a:hover {
  text-decoration: underline;
  color: #fff;
}

.hw-footer-socials {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  column-gap: 0.5rem;
}
.hw-footer-socials li {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  white-space: nowrap;
}
.hw-footer-socials .hw-sep {
  color: rgba(255, 255, 255, 0.4);
}

.hw-footer-note {
  margin: 0;
  font-size: 0.75rem;
  font-style: italic;
  color: rgba(255, 255, 255, 0.55);
}

.hw-footer-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
}

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