/* ── AREA42 — project.css ── */
/* Shared by all individual commission project pages */

body {
  padding-bottom: 6rem;
}

.project-page {
  max-width: 720px;
  margin: 0 auto;
  padding: 3rem 2rem 0;
}

/* ── Hero image ── */
.hero-img {
  width: 100%;
  margin-bottom: 2.5rem;
}

.hero-img img {
  width: 100%;
  height: auto;
  display: block;
}

/* ── Intro ── */
.project-intro {
  font-family: 'Caveat', cursive;
  font-size: 1.3rem;
  line-height: 1.6;
  color: var(--ink);
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1.5px solid rgba(0,0,0,0.08);
}

/* ── Sections ── */
.project-section {
  margin-bottom: 3.5rem;
}

.project-section h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  color: var(--blue);
  margin-bottom: 1.2rem;
  padding-bottom: 0.4rem;
  border-bottom: 1.5px solid var(--blue);
  opacity: 0.85;
}

.project-section p {
  font-family: 'Courier Prime', monospace;
  font-size: 0.9rem;
  line-height: 1.85;
  color: var(--ink);
  margin-bottom: 1rem;
}

/* ── Process steps ── */
.step {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 1rem;
  margin-bottom: 2.5rem;
  align-items: start;
}

.step-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  color: var(--ink);
  opacity: 0.15;
  line-height: 1;
  padding-top: 2px;
}

.step-content h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1rem;
  letter-spacing: 0.1em;
  color: var(--ink);
  margin-bottom: 0.5rem;
}

.step-content p {
  font-family: 'Courier Prime', monospace;
  font-size: 0.88rem;
  line-height: 1.8;
  color: var(--ink);
  margin-bottom: 0.8rem;
}

.step-content img {
  width: 100%;
  height: auto;
  display: block;
  margin-top: 0.8rem;
}

/* ── Gallery ── */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
}

.gallery img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}
