/* ===== Case Hero ===== */
.case-hero {
  position: relative; width: 100%; height: 70vh;
  min-height: 500px;
  display: flex; align-items: flex-end;
  overflow: hidden;
}
.case-hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform 0.1s linear;
}
.case-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.9) 0%, rgba(10,10,10,0.1) 60%);
  z-index: 2;
}
.case-hero-content {
  position: relative; z-index: 3;
  max-width: var(--max-w); margin: 0 auto;
  width: 100%; padding: 48px 24px 64px;
}
.case-hero-label {
  font-size: 0.75rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 12px;
}
.case-hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 400; line-height: 1.15;
  margin-bottom: 20px;
}
.case-meta {
  display: flex; gap: 32px; flex-wrap: wrap;
}
.case-meta-item {
  display: flex; flex-direction: column;
}
.case-meta-label {
  font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: 2px;
}
.case-meta-value {
  font-size: 0.9rem; color: var(--text);
}

/* ===== Nav Back ===== */
.nav-back {
  display: flex; align-items: center; gap: 6px;
  font-size: 0.85rem; color: var(--text-muted);
  transition: color 0.3s;
}
.nav-back:hover { color: var(--gold); }

/* ===== Gallery ===== */
.case-gallery {
  max-width: var(--max-w); margin: 0 auto;
  padding: 80px 24px 120px;
}
.case-gallery-inner {
  columns: 2; column-gap: 16px;
}
.case-gallery-item {
  break-inside: avoid; margin-bottom: 16px;
  overflow: hidden;
  opacity: 0; transform: translateY(30px);
}
.case-gallery-item img {
  width: 100%; display: block;
  transition: transform 0.6s;
}
.case-gallery-item:hover img { transform: scale(1.03); }

/* ===== CTA ===== */
.case-cta {
  padding: 100px 24px;
  text-align: center;
  background: var(--dark2);
}
.case-cta-inner {
  max-width: 600px; margin: 0 auto;
}
.case-cta-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 400;
  margin-bottom: 32px;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .case-hero { height: 60vh; min-height: 400px; }
  .case-gallery-inner { columns: 1; }
  .case-meta { gap: 20px; }
}
