*, *::before, *::after { box-sizing: border-box; }
:root {
  --text: #f0ede8;
  --text-muted: rgba(240, 237, 232, .55);
  --link: rgba(240, 237, 232, .65);
  --link-hover: #f0ede8;
  --site-line: rgba(240, 237, 232, .18);
  --site-glass: rgba(10, 10, 20, .22);
  --header-height: 64px;
}
html { min-height: 100%; scroll-padding-top: calc(var(--header-height) + 24px); }
body {
  margin: 0;
  min-height: 100vh;
  min-height: 100dvh;
  background: #0a0a0f;
  color: var(--text);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
#sky { position: fixed; inset: 0; z-index: -1; pointer-events: none; }
a { color: inherit; }
a:focus-visible, iframe:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 6px;
  border-radius: 2px;
}
.skip-link {
  position: fixed; top: 12px; left: 12px; z-index: 101;
  padding: 10px 16px; background: var(--text); color: #0a0a0f;
  transform: translateY(-200%);
}
.skip-link:focus { transform: none; }
.site-header {
  position: fixed; inset: 0 0 auto; z-index: 100;
  height: var(--header-height);
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; padding: 0 clamp(20px, 2vw, 32px);
  background: transparent;
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
}
.site-brand {
  text-decoration: none; font-size: 12px; font-weight: 450;
  letter-spacing: .14em; white-space: nowrap;
}
.site-nav { display: flex; align-items: center; gap: clamp(20px, 3vw, 36px); margin-left: auto; flex-shrink: 0; }
.site-brand { flex-shrink: 0; }
.site-breadcrumbs { display: flex; align-items: center; gap: 12px; min-width: 0; font-size: 12px; color: var(--link); }
.site-breadcrumbs a { text-decoration: none; white-space: nowrap; }
.site-breadcrumbs a:hover { color: var(--text); }
.site-breadcrumbs [aria-current] { margin: 0; font-size: inherit; font-weight: 400; color: var(--text); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.site-breadcrumbs .crumb-parent, .site-breadcrumbs .crumb-divider { flex-shrink: 0; }
.site-breadcrumbs .crumb-divider { opacity: .45; }
.site-nav a {
  position: relative; display: flex; align-items: center; min-height: 44px;
  text-decoration: none; font-size: 14px; font-weight: 400;
  color: var(--link); transition: color .2s;
}
.site-nav a:hover, .site-nav a[aria-current] { color: var(--text); }
.site-nav a[aria-current]::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 5px;
  height: 1px; background: currentColor;
}
.collection {
  position: relative; width: min(100% - 48px, 1000px); margin: 0 auto;
  padding: calc(var(--header-height) + clamp(48px, 8vh, 96px)) 0 80px;
}
.collection h1 {
  font-size: clamp(42px, 7vw, 76px); font-weight: 250;
  letter-spacing: -.055em; line-height: 1.1; margin: 0 0 24px;
}
.collection-intro { max-width: 580px; color: var(--text-muted); margin: 0 0 60px; font-weight: 350; }
.project-list { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--site-line); }
.project-item a {
  display: grid; grid-template-columns: 150px 1fr 24px; gap: 28px;
  padding: 28px 0; border-bottom: 1px solid var(--site-line);
  text-decoration: none; align-items: baseline;
}
.project-kind { font-size: 11px; font-weight: 400; color: var(--text-muted); letter-spacing: .025em; }
.project-title { display: block; font-size: clamp(19px, 2.7vw, 26px); font-weight: 350; line-height: 1.3; }
.project-description { display: block; margin-top: 7px; font-size: 13px; color: var(--text-muted); font-weight: 350; }
.project-arrow { color: var(--link); transition: transform .2s; }
.project-item a:hover .project-arrow { transform: translate(3px, -3px); }
.project-item a:hover .project-title { text-decoration: underline; text-underline-offset: 5px; text-decoration-thickness: 1px; }
.empty-state { border-top: 1px solid var(--site-line); padding-top: 32px; color: var(--text-muted); }
.empty-state p { margin: 0 0 12px; }
.speech-year { font-size: 18px; font-weight: 400; margin: 44px 0 20px; }
.speech-content { max-width: 760px; }
.speech-content img, .speech-content video { max-width: 100%; height: auto; }
.project-page {
  height: 100vh; height: 100dvh; overflow: hidden;
  background: var(--project-background, #080808);
  --text: var(--project-color, #e0e0e0);
  --link: color-mix(in srgb, var(--text) 68%, transparent);
}
.project-page .site-header {
  background-color: var(--project-background, #080808);
  background-image: var(--project-background-image, none);
  background-size: 100% 100dvh;
  backdrop-filter: none; -webkit-backdrop-filter: none;
}
.project-stage {
  position: fixed; top: var(--header-height); right: 0; bottom: 0; left: 0;
  display: flex; flex-direction: column;
  padding: 0;
}
.project-frame {
  display: block; width: 100%; flex: 1 1 auto; min-height: 0;
  border: 0; border-radius: 0;
  background: transparent;
}
.project-fallback { padding: 24px; }
@media (max-width: 600px) {
  :root { --header-height: 56px; }
  .site-header { padding-inline: 16px; gap: 12px; }
  .site-brand { font-size: 10px; letter-spacing: .08em; }
  .site-nav { gap: 14px; }
  .site-nav a { font-size: 12px; }
  .site-breadcrumbs { gap: 8px; font-size: 11px; }
  .has-breadcrumbs { --header-height: 88px; }
  html:has(.has-breadcrumbs) { scroll-padding-top: 112px; }
  .has-breadcrumbs .site-header {
    display: grid; grid-template-columns: 1fr auto; grid-template-rows: 44px 32px;
    gap: 0 12px; padding-bottom: 12px;
  }
  .has-breadcrumbs .site-brand { grid-column: 1; grid-row: 1; }
  .has-breadcrumbs .site-nav { grid-column: 2; grid-row: 1; }
  .has-breadcrumbs .site-breadcrumbs { grid-column: 1 / -1; grid-row: 2; }
  .collection { width: calc(100% - 40px); }
  .collection-intro { margin-bottom: 40px; font-size: 14px; }
  .project-item a { grid-template-columns: 1fr 20px; gap: 8px 16px; padding: 24px 0; }
  .project-kind { grid-column: 1; }
  .project-copy { grid-column: 1; }
  .project-arrow { grid-column: 2; grid-row: 2; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
