/* project page specific styles — included alongside style.css */
.project-hero {
  position: relative;
  min-height: 55vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--ink);
  padding-top: 80px;
}
.project-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.35;
  mix-blend-mode: luminosity;
}
.project-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(14,14,14,0.92) 0%, rgba(14,14,14,0.4) 100%);
}
.project-hero-content {
  position: relative;
  z-index: 2;
  padding: 4rem 4rem 4rem;
  max-width: 900px;
}
.project-back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  margin-bottom: 2rem;
  border: 1px solid rgba(255,255,255,0.35);
  padding: 0.5rem 1rem;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.project-back::before { content: '←'; }
.project-back:hover { color: #fff; border-color: var(--accent); background: rgba(192,86,42,0.15); }
.project-eyebrow { font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); font-weight: 500; margin-bottom: 0.75rem; }
.project-title { font-family: var(--serif); font-size: clamp(2.5rem, 4vw, 4rem); color: #fff; line-height: 1.1; }

/* content area */
.project-body {
  max-width: 1100px;
  margin: 0 auto;
  padding: 5rem 4rem 6rem;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 5rem;
  align-items: start;
}
.project-meta { position: sticky; top: 100px; }
.meta-table { width: 100%; border-collapse: collapse; }
.meta-table td { padding: 0.75rem 0; vertical-align: top; border-bottom: 1px solid var(--border); font-size: 0.875rem; }
.meta-table td:first-child { color: var(--ink-muted); font-weight: 400; width: 45%; padding-right: 1rem; }
.meta-table td:last-child { color: var(--ink); font-weight: 400; }
.project-ext-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 2rem;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid var(--accent);
  padding-bottom: 2px;
  transition: opacity 0.2s;
}
.project-ext-link::after { content: '↗'; }
.project-ext-link:hover { opacity: 0.7; }

.project-text h2 { font-family: var(--serif); font-size: 1.75rem; margin-bottom: 1.5rem; line-height: 1.2; }
.project-text p { font-size: 1.05rem; color: var(--ink-muted); font-weight: 300; margin-bottom: 1.5rem; line-height: 1.8; }
.project-text p strong { color: var(--ink); font-weight: 500; }

@media (max-width: 900px) {
  .project-hero-content { padding: 3rem 1.5rem 3rem; }
  .project-body { grid-template-columns: 1fr; gap: 3rem; padding: 3rem 1.5rem 5rem; }
  .project-meta { position: static; }
}
