:root {
  --bg: #050505;
  --bg-soft: #101010;
  --panel: rgba(255, 255, 255, 0.04);
  --panel-strong: rgba(255, 255, 255, 0.08);
  --text: #f4f1ea;
  --muted: #b8b3aa;
  --line: rgba(255, 255, 255, 0.2);
  --accent: #d8a44d;
  --accent-soft: #7cb8ff;
  --shadow: 0 20px 70px rgba(0, 0, 0, 0.45);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(124, 184, 255, 0.08), transparent 30%),
    radial-gradient(circle at top right, rgba(216, 164, 77, 0.1), transparent 28%),
    linear-gradient(180deg, #050505 0%, #080808 55%, #040404 100%);
  color: var(--text);
  font-family: "Space Grotesk", sans-serif;
}

a {
  color: inherit;
}

.landing-page {
  overflow: hidden;
}

.landing-shell {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 2rem;
}

.landing-video,
.landing-overlay {
  position: absolute;
  inset: 0;
}

.landing-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.landing-overlay {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.32), rgba(0, 0, 0, 0.58)),
    radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.22) 72%);
}

.wordmark-card {
  position: relative;
  z-index: 1;
  display: inline-block;
  width: min(92vw, 980px);
  text-decoration: none;
  transition: transform 220ms ease;
}

.wordmark-card:hover,
.wordmark-card:focus-visible {
  transform: translateY(-3px);
}

.wordmark-image,
.brand-image,
.project-still,
.project-embed,
.supporter-grid img {
  display: block;
  max-width: 100%;
}

.wordmark-image {
  width: 100%;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.55));
}

.page-shell {
  width: min(1200px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 1.5rem 0 4rem;
}

.page-shell-contact {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 0 2rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand-image {
  width: min(272px, 48vw);
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.site-nav a,
.project-links a,
.supporter-grid a,
.contact-email {
  text-decoration: none;
  color: var(--text);
  border-bottom: 1px solid transparent;
  transition: border-color 180ms ease, color 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.project-links a:hover,
.project-links a:focus-visible,
.supporter-grid a:hover,
.supporter-grid a:focus-visible,
.contact-email:hover,
.contact-email:focus-visible {
  color: white;
  border-color: currentColor;
}

.content-stack {
  display: grid;
  gap: 2rem;
  max-width: min(1200px, calc(100% - 2rem));
  margin-left: auto;
  margin-right: auto;
}

.project-card,
.contact-panel {
  display: grid;
  gap: 1.5rem;
  padding: 1.5rem;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, var(--panel), rgba(255, 255, 255, 0.02));
  box-shadow: var(--shadow);
}

.project-card {
  grid-template-columns: 1fr;
}

.featured-project {
  min-height: 70vh;
  align-items: stretch;
}

.project-copy h1,
.project-copy h2,
.contact-email {
  margin: 0;
}

.project-copy h1,
.project-copy h2 {
  font-size: clamp(2rem, 4vw, 3.6rem);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.project-copy p,
.contact-note {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.about-columns p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

.project-kicker {
  margin: 0 0 0.5rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.78rem;
}

.project-credit {
  color: var(--text);
}

.project-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  margin-top: 1.5rem;
}

.media-panel {
  min-height: 260px;
  display: grid;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
}

.media-panel-video {
  background:
    linear-gradient(135deg, rgba(124, 184, 255, 0.18), transparent 50%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.01));
}

.media-panel-quote {
  background:
    linear-gradient(145deg, rgba(216, 164, 77, 0.15), transparent 50%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
}

.media-panel-image {
  background:
    radial-gradient(circle at top right, rgba(124, 184, 255, 0.16), transparent 35%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
}

.project-video,
.project-embed,
.project-still {
  width: 100%;
  height: 100%;
}

.project-video,
.project-still {
  object-fit: cover;
}

.project-quote {
  margin: 0;
  padding: 1.5rem;
  display: grid;
  align-content: end;
  gap: 1rem;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.32));
}

.project-quote p,
.project-quote cite {
  margin: 0;
}

.project-quote p {
  color: var(--text);
  font-size: 1.15rem;
  line-height: 1.6;
  text-transform: none;
  letter-spacing: 0.02em;
}

.project-quote cite {
  color: var(--muted);
  font-style: normal;
  letter-spacing: 0.12em;
}

.about-layout {
  display: grid;
  gap: 3rem;
}

.about-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
}

.section-heading {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.section-heading span {
  flex: 1;
  height: 1px;
  background: var(--line);
}

.section-heading h2 {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 1rem;
}

.supporter-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.85rem;
}

.supporter-grid a {
  display: grid;
  place-items: center;
  padding: 1rem;
  border: 1px solid var(--line);
  background: var(--panel);
  min-height: 120px;
}

.supporter-grid img {
  max-height: 68px;
  width: auto;
  object-fit: contain;
}

.contact-panel {
  margin: auto 0;
  grid-template-columns: 1fr;
  max-width: 760px;
}

.contact-note {
  margin-bottom: 1rem;
  max-width: 28ch;
}

.contact-email {
  font-size: clamp(1.25rem, 4vw, 2rem);
  font-weight: 500;
  letter-spacing: 0.04em;
  word-break: break-word;
  hyphens: auto;
}

@media (max-width: 800px) {
  .site-header,
  .project-card,
  .about-columns {
    grid-template-columns: 1fr;
  }

  .site-header {
    display: grid;
  }

  .project-card,
  .contact-panel {
    padding: 1.2rem;
  }

  .media-panel {
    min-height: 180px;
  }
}

@media (max-width: 520px) {
  .page-shell {
    width: min(100% - 1rem, 1200px);
  }

  .site-nav a,
  .project-kicker,
  .section-heading h2,
  .media-panel {
    letter-spacing: 0.12em;
  }

  .project-copy p,
  .contact-note {
    font-size: 1rem;
  }

  .about-columns p {
    font-size: 0.85rem;
  }
}