/* =========================
   ARCHSHIFT PROJECT
========================= */

.archshift-project {
  background: #000;
}

/* ===== HEADER ===== */

.archshift-project .nav-title {
  font-family: var(--font-archshift);
  font-size: 1rem;
  letter-spacing: 0.12em;
}

/* ===== HERO ===== */

.archshift-hero {
  padding: 140px 64px 80px;
  display: flex;
  justify-content: center;
}

.hero-media {
  width: 100%;
  max-width: 1400px;
  aspect-ratio: 21 / 9;
  overflow: hidden;
  border-radius: 16px;

  box-shadow:
    0 30px 80px rgba(0,0,0,0.7),
    inset 0 0 0 1px rgba(255,255,255,0.06);
}

.hero-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ===== INTRO ===== */

.archshift-intro {
  max-width: 720px;
  margin: 0 auto;
  padding: 80px 32px;
  text-align: center;
}

.archshift-intro .project-title {
  font-family: var(--font-archshift);
  font-size: clamp(2.2rem, 4vw, 2.8rem);
  margin-bottom: 12px;
}

.archshift-intro .project-meta {
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.6;
  margin-bottom: 32px;
}

.archshift-intro .project-statement {
  font-size: 0.95rem;
  line-height: 1.75;
  opacity: 0.75;
  margin-bottom: 40px;
}

/* ===== ACTION ===== */

.project-actions {
  display: flex;
  justify-content: center;
}

.project-button {
  border: 1px solid rgba(255,255,255,0.5);
  padding: 14px 32px;
  border-radius: 999px;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  color: white;
  transition: all 0.25s ease;
}

.project-button:hover {
  background: white;
  color: black;
}

/* ===== GALLERY ===== */

.archshift-gallery {
  padding: 120px 64px 160px;
}

.archshift-gallery h2 {
  text-align: center;
  margin-bottom: 48px;
  font-size: 1.6rem;
}

.archshift-gallery .gallery-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
}

/* Frame */

.archshift-gallery .frame {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 16px;
  background: #111;

  box-shadow:
    0 24px 60px rgba(0,0,0,0.45),
    inset 0 0 0 1px rgba(255,255,255,0.05);
}

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

/* Hover label */

.archshift-gallery .frame::after {
  content: attr(data-label);
  position: absolute;
  inset: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;

  color: white;
  background: rgba(0,0,0,0.6);

  opacity: 0;
  transition: opacity 0.25s ease;
}

.archshift-gallery .frame:hover::after {
  opacity: 1;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 900px) {
  .archshift-hero {
    padding: 120px 32px 64px;
  }

  .archshift-gallery .gallery-grid {
    grid-template-columns: 1fr;
  }
}

