 
.selected-projects {
  padding: clamp(30px, 3.125vw, 60px) 0;
  background: var(--page-bg);
}

.selected-projects__inner {
  
  margin: 0 auto;
}

.selected-projects__header {
  max-width: 760px;
  margin: 0 auto 40px;
  text-align: center;
}

.selected-projects__title {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(24px, 2.81vw, 54px);
  line-height: 1.13;
  letter-spacing: -0.042em;
  font-weight: 500;
}

.selected-projects__intro {
  margin: 26px 0 0;
  font-family: var(--sans);
  font-weight: 400;
  font-size: clamp(14px, 0.83vw, 16px);
  line-height: 1.75;
  color: var(--text-body);
}

.selected-projects__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(0, 1fr);
  gap: 36px;
  align-items: start;
}

.lead-project,
.supporting-project {
  background: var(--card-bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.lead-project__image-link,
.supporting-project__image-link {
  display: block;
}

.lead-project__image-wrap {
  aspect-ratio: 1.52 / 1;
  background: #ece6e3;
  overflow: hidden;
}

.supporting-project__image-wrap {
  /* aspect-ratio: 1.22 / 1; */
  background: #ece6e3;
  overflow: hidden;
}

.lead-project__image,
.supporting-project__image {
  object-fit: cover;
  object-position: center;
}

.lead-project__content {
  padding: 20px;
}

.lead-project__title {
  margin: 0;
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(18px, 1.67vw, 32px);
  line-height: 1.18;
  letter-spacing: -0.02em;
}

.lead-project__description {
  margin: 18px 0 0;
  font-size: clamp(14px, 0.83vw, 16px);
  line-height: 1.7;
  color: var(--text-body);
}

.lead-project__cta-row {
  margin-top: 26px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.lead-project__cta {
  display: inline-block;
  font-family: var(--sans);
  font-weight: 400;
  font-size: clamp(14px, 0.89vw, 17px);
  line-height: 1.4;
  color: #3a3532;
}

.supporting-projects {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}

.supporting-project {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(0, 1.02fr);
  min-height: 0;
}

.supporting-project__content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.supporting-project__title {
  margin: 0;
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(18px, 1.35vw, 26px);
  line-height: 1.28;
  letter-spacing: -0.02em;
}

.supporting-project__description {
  margin: 18px 0 0;
  font-size: clamp(14px, 0.83vw, 16px);
  line-height: 1.62;
  color: var(--text-body);
}

.lead-project__image-link:focus-visible,
.lead-project__cta:focus-visible,
.supporting-project__image-link:focus-visible {
  outline: 2px solid rgba(97, 71, 54, 0.55);
  outline-offset: -2px;
}

@media (hover: hover) and (pointer: fine) {
  .lead-project,
  .supporting-project {
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
  }

  .lead-project:hover,
  .supporting-project:hover {
    transform: translateY(-2px);
    box-shadow: 0 2px 4px rgba(40, 32, 28, 0.03), 0 14px 30px rgba(40, 32, 28, 0.032);
    border-color: rgba(68, 58, 52, 0.1);
  }
}

@media (max-width: 1180px) {


  .selected-projects__grid {
    gap: 26px;
  }


  
}

@media (max-width: 980px) {
 

  .selected-projects__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .selected-projects__header {
    margin-bottom: 34px;
  }

  .lead-project {
    max-width: 760px;
    width: 100%;
  }

  .supporting-projects {
    max-width: 760px;
    width: 100%;
  }
}

@media (max-width: 720px) {


  .selected-projects__intro {
    line-height: 1.7;
  }

  .selected-project__intro br,
  .lead-project__description br,
  .supporting-project__title br,
  .supporting-project__description br {
    display: none;
  }

  .supporting-project {
    grid-template-columns: 1fr;
  }

  .supporting-project__image-wrap {
    aspect-ratio: 1.5 / 1;
  }

  .supporting-project__content {
    padding: 15px;
  }

  .lead-project__content {
    padding: 15px;
  }

  .lead-project__description,
  .supporting-project__description {
    line-height: 1.52;
    margin: 10px 0 0;
  }


}

@media (max-width: 479px) {
  .selected-projects__header {
    margin-bottom: 28px;
  }

  .selected-projects__intro {
    margin-top: 18px;
  }

  .lead-project__image-wrap,
  .supporting-project__image-wrap {
    /* aspect-ratio: 1.38 / 1; */
  }



  .lead-project__cta-row {
    margin-top: 22px;
    padding-top: 16px;
  }
}
