/* ============================================================
   CASE STUDY — LANDSCAPE LAYOUT
   ============================================================ */

/* Full-width image — natural proportions, never cropped */
.cs-land__image {
  width: 90%;
  margin: 0 auto;
  padding-top: 4.5rem;
}

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

/* Content panel */
.cs-land__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8rem;
  padding: 8rem 4rem 8rem;
  border-top: 1px solid var(--border-subtle);
}

/* LEFT — eyebrow, title, description */
.cs-land__left {
  display: flex;
  flex-direction: column;
}

.cs-land__eyebrow {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 2rem;
}

.cs-land__title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 300;
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin-bottom: 3rem;
}

.cs-land__title em {
  font-style: italic;
  display: block;
}

.cs-land__divider {
  width: 100%;
  height: 1px;
  background: var(--border-subtle);
  margin-bottom: 3rem;
}

.cs-land__desc {
  font-size: 1.1rem;
  color: var(--grey);
  line-height: 2.1;
  max-width: 480px;
  margin-bottom: 4rem;
}

.cs-land__back {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--grey);
  text-decoration: none;
  transition: color 0.3s ease, gap 0.3s ease;
  margin-top: auto;
}

.cs-land__back:hover {
  color: var(--white);
  gap: 1.25rem;
}

/* RIGHT — meta rows */
.cs-land__right {
  display: flex;
  flex-direction: column;
  padding-top: 3.5rem;
}

.cs-land__meta {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.cs-land__meta-row {
  display: flex;
  gap: 2rem;
  align-items: baseline;
}

.cs-land__meta-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--grey);
  flex: 0 0 7rem;
}

.cs-land__meta-value {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 300;
  color: var(--white);
  line-height: 1.7;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .cs-land__content {
    gap: 5rem;
    padding: 6rem 2.5rem;
  }
}

@media (max-width: 768px) {
  .cs-land__content {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 4rem 1.5rem 5rem;
  }

  .cs-land__right {
    padding-top: 3rem;
    margin-top: 3rem;
    border-top: 1px solid var(--border-subtle);
  }
}
