:root {
  --project-gold: #e5b85c;
  --project-blue: #8ebcd5;
  --project-cream: #eee7db;
}

.project-header .brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.pixel-spark {
  position: relative;
  width: 20px;
  height: 20px;
  display: inline-block;
  image-rendering: pixelated;
}

.pixel-spark::before,
.pixel-spark::after {
  content: "";
  position: absolute;
  background: var(--project-gold);
  box-shadow:
    6px 0 0 var(--project-gold),
    12px 0 0 rgba(229, 184, 92, .45),
    6px -6px 0 rgba(229, 184, 92, .8),
    6px 6px 0 rgba(229, 184, 92, .8);
}

.pixel-spark::before { width: 4px; height: 4px; left: 0; top: 8px; }
.pixel-spark::after { width: 4px; height: 4px; left: 10px; top: 2px; filter: blur(.2px); }

.project-header-tools {
  display: flex;
  align-items: center;
  gap: 22px;
}

.page-language {
  border: 1px solid var(--line);
  background: rgba(255,255,255,.02);
  color: var(--muted);
  padding: 8px 11px;
  font: inherit;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
  cursor: pointer;
}

.project-hero {
  min-height: min(88vh, 920px);
  background-position: center 42%;
  position: relative;
  overflow: hidden;
}

.project-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 36%, rgba(229,184,92,.12), transparent 28%),
    linear-gradient(90deg, rgba(0,0,0,.26), transparent 42%);
}

.project-hero > div { position: relative; z-index: 1; }
.project-hero h1 { max-width: 1120px; }
.project-hero p { color: var(--project-cream); }

.intro-line {
  max-width: 1000px;
  margin: 0;
  font-size: clamp(24px, 3.2vw, 50px) !important;
  line-height: 1.16;
  letter-spacing: -.03em;
  color: var(--text) !important;
}

.content--narrative {
  align-items: start;
}

.copy-stack {
  display: grid;
  gap: 28px;
}

.copy-stack p { margin: 0; }

.facts strong {
  text-align: right;
  max-width: 62%;
}

.process {
  padding: 0 clamp(20px, 4vw, 64px) clamp(70px, 9vw, 140px);
}

.process-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--line);
}

.process-head h2 {
  margin: 0;
  font-size: clamp(36px, 6vw, 82px);
  line-height: .95;
  letter-spacing: -.05em;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.process-card {
  min-height: 230px;
  padding: 25px 24px 28px 0;
  border-bottom: 1px solid var(--line);
}

.process-card + .process-card {
  padding-left: 24px;
  border-left: 1px solid var(--line);
}

.process-card span {
  font-size: 11px;
  letter-spacing: .16em;
  color: var(--project-gold);
}

.process-card h3 {
  margin: 56px 0 12px;
  font-size: 20px;
}

.process-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.project-gallery {
  align-items: start;
}

.project-gallery figure {
  margin: 0;
  position: relative;
  overflow: hidden;
  background: #111;
}

.project-gallery figure.wide { grid-column: 1 / -1; }
.project-gallery img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: transform .8s cubic-bezier(.2,.7,.2,1);
}
.project-gallery figure:hover img { transform: scale(1.018); }

.project-gallery figcaption {
  position: absolute;
  left: 16px;
  bottom: 14px;
  padding: 7px 9px;
  background: rgba(0,0,0,.58);
  backdrop-filter: blur(10px);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.statement {
  margin: 0 clamp(20px,4vw,64px) clamp(70px,9vw,140px);
  padding: clamp(60px,8vw,110px);
  min-height: 54vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background:
    linear-gradient(120deg, rgba(0,0,0,.76), rgba(0,0,0,.18)),
    url('winged-horse-rear.jpg') center/cover;
}

.statement blockquote {
  max-width: 1100px;
  margin: 0;
  font-size: clamp(42px,7vw,100px);
  line-height: .93;
  letter-spacing: -.055em;
}

.statement p {
  align-self: flex-end;
  max-width: 520px;
  color: var(--project-cream);
}

@media (max-width: 900px) {
  .process-grid { grid-template-columns: 1fr 1fr; }
  .process-card:nth-child(3) { border-left: 0; padding-left: 0; }
  .project-header-tools { gap: 12px; }
}

@media (max-width: 620px) {
  .project-header { padding: 16px 18px; }
  .project-header .brand { gap: 8px; }
  .pixel-spark { display: none; }
  .back { font-size: 9px; }
  .page-language { padding: 7px 8px; }
  main { padding-top: 62px; }
  .project-hero { min-height: 72vh; padding: 34px 20px; }
  .project-hero h1 { font-size: clamp(50px, 18vw, 78px); }
  .process-grid { grid-template-columns: 1fr; }
  .process-card,
  .process-card + .process-card {
    min-height: auto;
    padding: 24px 0;
    border-left: 0;
  }
  .process-card h3 { margin-top: 30px; }
  .statement { margin-left: 0; margin-right: 0; padding: 50px 20px; }
}
