/* ============================================================
   ARDEN LANDSCAPES — case-studies.css
   projects.html specific:
   Full-width alternating case study layout.
   ============================================================ */


.case-studies {
  padding: 0;
}

.case-study {
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid var(--border-strong);
  padding: 48px 72px;
}

/* Image panel — full width, natural proportions */
.case-study-img {
  border-radius: 8px;
  overflow: hidden;
  background: var(--bg-deep);
  min-height: 48px;
}
.case-study-img img {
  width: 100%;
  height: auto;
  display: block;
}

.case-study-img-label {
  position: absolute;
  bottom: 20px;
  left: 20px;
  font-family: var(--font-label);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(238,242,232,0.4);
}

.case-study-num {
  position: absolute;
  top: 32px;
  right: 32px;
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 300;
  line-height: 1;
  color: rgba(30,58,30,0.06);
  user-select: none;
}

/* Body — two-column editorial layout below image */
.case-study-body {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 48px 80px;
  padding: 40px 0 0;
}
.case-study-body-left { align-self: start; }
.case-study-body-right p {
  font-size: 0.92rem;
  color: var(--text-soft);
  line-height: 1.85;
  margin-bottom: 0.9rem;
}
.case-study-body-right p:last-of-type { margin-bottom: 0; }

.case-study-tag {
  font-family: var(--font-label);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--sage);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 1.4rem;
}
.case-study-tag::before {
  content: '';
  display: block;
  width: 20px;
  height: 1px;
  background: var(--sage);
}

.case-study-body h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 300;
  color: var(--forest);
  line-height: 1.1;
  margin-bottom: 1.4rem;
}
.case-study-body h2 em,
.case-study-body h2 span[style*="font-style: italic"] { font-style: italic; color: var(--sage); }

.case-study-body p {
  font-size: 0.92rem;
  color: var(--text-soft);
  line-height: 1.85;
  margin-bottom: 0.9rem;
}
.case-study-body p:last-of-type { margin-bottom: 0; }

/* Meta row — client, location, scope */
.case-study-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin-top: 1.2rem;
  border-top: 1px solid var(--border-strong);
}
.case-study-meta-item {
  padding: 16px 24px 16px 0;
  margin-right: 24px;
  border-right: 1px solid var(--border);
}
.case-study-meta-item:last-child { border-right: none; margin-right: 0; }

.meta-label {
  font-family: var(--font-label);
  font-size: 9px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-soft);
  display: block;
  margin-bottom: 3px;
}
.meta-value {
  font-family: var(--font-label);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--forest);
  font-weight: 500;
}


/* ── Responsive ── */
@media (min-width: 1270px) {
  .case-study {
    max-width: 1270px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 1080px) {
  .case-study { padding: 36px; }
  .case-study-body { gap: 36px 48px; }
}
@media (max-width: 760px) {
  .case-study { padding: 24px 20px; }
  .case-study-body { grid-template-columns: 1fr; gap: 16px; padding-top: 24px; }
  .case-study-meta { flex-wrap: wrap; }
  .case-study-meta-item { padding: 12px 16px 12px 0; margin-right: 16px; }
}
@media (max-width: 480px) {
  .case-study-meta {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .case-study-meta-item {
    width: 100%;
    padding: 12px 0;
    margin-right: 0;
    border-right: none;
    border-bottom: 1px solid var(--border);
  }
  .case-study-meta-item:last-child { border-bottom: none; }
}
